Files
NativeScript/build/pack-compat.sh
2020-01-17 15:12:28 +02:00

22 lines
260 B
Bash
Executable File

#!/bin/bash
##
# Packs:
# - tns-core-modules
# inside dist folder
##
set -x
set -e
## Pack tns-core-modules
(
cd "dist/tns-core-modules"
echo 'Run tsc ...'
npx tsc
echo 'NPM packing ...'
TGZ="$(npm pack)"
mv "$TGZ" "../$TGZ"
)