joplin/CliClient/build.sh

15 lines
439 B
Bash
Raw Normal View History

2017-06-25 16:30:44 +00:00
#!/bin/bash
2017-07-18 18:04:47 +00:00
ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2017-11-03 18:39:08 +00:00
BUILD_DIR="$ROOT_DIR/build"
2017-06-25 16:30:44 +00:00
rsync -a --exclude "node_modules/" "$ROOT_DIR/app/" "$BUILD_DIR/"
2017-12-14 18:12:14 +00:00
rsync -a --delete "$ROOT_DIR/../ReactNativeClient/lib/" "$BUILD_DIR/lib/"
rsync -a --delete "$ROOT_DIR/../ReactNativeClient/locales/" "$BUILD_DIR/locales/"
2017-11-03 18:39:08 +00:00
cp "$ROOT_DIR/package.json" "$BUILD_DIR"
cd $ROOT_DIR/..
2019-12-14 01:28:37 +00:00
npm run tsc
cd $ROOT_DIR
2017-12-04 17:55:06 +00:00
chmod 755 "$BUILD_DIR/main.js"