mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 08:55:34 +00:00
Removes a number of unused functions from the file, renames remaining functions to match our builder script prefix patterns, removes unused imports from various build scripts (e.g. Android). Fixes: #14453
37 lines
1.3 KiB
Bash
Executable file
37 lines
1.3 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-full.inc.sh"
|
|
## END STANDARD BUILD SCRIPT INCLUDE
|
|
|
|
. "$KEYMAN_ROOT/resources/build/utils.inc.sh"
|
|
. "$KEYMAN_ROOT/resources/build/node.inc.sh"
|
|
. "$KEYMAN_ROOT/resources/build/ci/ci-publish.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 node_select_version_and_npm_ci
|
|
builder_run_action build tsc --build
|
|
# builder_run_action test # no tests at this time
|
|
builder_run_action publish ci_publish_npm
|