mirror of
https://github.com/mapillary/mapillary-js.git
synced 2026-01-18 13:56:53 +00:00
16 lines
318 B
Bash
Executable File
16 lines
318 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DOC="$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
# MapillaryJS
|
|
#
|
|
# Can not be in doc/node_modules because of
|
|
# class inheritance problems related to CJS
|
|
# module conversion in server build.
|
|
MJS_NAME="mapillary-js"
|
|
MJS_MODULE="$DOC/src/$MJS_NAME"
|
|
MJS="$DOC/.."
|
|
|
|
mkdir -p "$MJS_MODULE"
|
|
cp -R "$MJS/dist" "$MJS_MODULE"
|