mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-14 10:01:08 +08:00
21 lines
245 B
Bash
Executable File
21 lines
245 B
Bash
Executable File
#!/bin/bash
|
|
|
|
##
|
|
# Prepares and packs:
|
|
# - tns-core-modules
|
|
# inside dist folder
|
|
##
|
|
|
|
set -x
|
|
set -e
|
|
|
|
DIST=dist;
|
|
ROOT_DIR=$(cd `dirname $0` && pwd)/..;
|
|
cd "$ROOT_DIR"
|
|
|
|
## Prepare tns-core-modules
|
|
|
|
./build/prepare-compat.sh
|
|
|
|
./build/pack-compat.sh
|