mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-14 18:12:09 +08:00
18 lines
253 B
Bash
Executable File
18 lines
253 B
Bash
Executable File
#!/bin/bash
|
|
|
|
##
|
|
# Prepares and packs:
|
|
# - tns-platform-declarations
|
|
# - @nativescript/core packages
|
|
# inside dist folder
|
|
##
|
|
|
|
set -x
|
|
set -e
|
|
|
|
DIST=dist;
|
|
ROOT_DIR=$(cd `dirname $0` && pwd)/..;
|
|
cd "$ROOT_DIR"
|
|
|
|
./build/prepare-core.sh
|
|
./build/pack-core.sh |