mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
22 lines
260 B
Bash
Executable File
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"
|
|
) |