mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
Use a new flag `--npm-publish` in conjunction with `publish` action, so that the default will always be to `npm pack` if the new flag is not specified. This flag is also guarded in the actual npm publish code to ensure that it can only run in the appropriate CI alpha/beta/stable environment, and not in local or test. This then also removes the separate `pack` action. Also removes legacy boilerplate from a number of build scripts.
36 lines
1.2 KiB
Bash
Executable file
36 lines
1.2 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Packages the @keymanapp/ldml-keyboard-constants package.
|
|
#
|
|
## START STANDARD BUILD SCRIPT INCLUDE
|
|
# adjust relative paths as necessary
|
|
THIS_SCRIPT="$(readlink -f "${BASH_SOURCE[0]}")"
|
|
. "${THIS_SCRIPT%/*}/../../../resources/build/builder.inc.sh"
|
|
## END STANDARD BUILD SCRIPT INCLUDE
|
|
|
|
. "$KEYMAN_ROOT/resources/shellHelperFunctions.sh"
|
|
. "$KEYMAN_ROOT/resources/build/build-utils-ci.inc.sh"
|
|
|
|
builder_describe "Keyman ldml-keyboard-constants package" \
|
|
"@/common/web/keyman-version" \
|
|
"clean" \
|
|
"configure" \
|
|
"build" \
|
|
"test" \
|
|
"publish publish to npm" \
|
|
"--npm-publish+ For publish, do a npm publish, not npm pack (only for CI)" \
|
|
"--dry-run,-n don't actually publish, just dry run"
|
|
|
|
builder_describe_outputs \
|
|
configure /node_modules \
|
|
build /core/include/ldml/build/keyman_core_ldml.js
|
|
|
|
builder_parse "$@"
|
|
|
|
#-------------------------------------------------------------------------------------------------------------------
|
|
|
|
builder_run_action clean rm -rf ./build/
|
|
builder_run_action configure verify_npm_setup
|
|
builder_run_action build tsc --build
|
|
# builder_run_action test # no tests at this time
|
|
builder_run_action publish builder_publish_npm
|