mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
* Simplify the build dependency / child tree * Split building and testing tooling so we don't rebuild components * Fixup expected outputs to avoid repeated builds of components * Remove unused dependency references * Move test.sh targets into build.sh, so that testing doesn't lose dependency tracking and cause unnecessary rebuilds. (Note that I have not yet deleted test.sh.) * Make predictive-text a direct child of engine, so that we don't build it twice (or even more times) Test-bot: skip
27 lines
838 B
Bash
Executable file
27 lines
838 B
Bash
Executable file
#!/usr/bin/env bash
|
|
## 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"
|
|
|
|
################################ Main script ################################
|
|
|
|
builder_describe "Check markdown internal links" \
|
|
"clean" \
|
|
"configure" \
|
|
"build"
|
|
|
|
builder_describe_outputs \
|
|
configure /node_modules \
|
|
build build/index.js
|
|
|
|
builder_parse "$@"
|
|
|
|
builder_run_action clean rm -rf build/ tsconfig.tsbuildinfo
|
|
builder_run_action configure node_select_version_and_npm_ci
|
|
builder_run_action build tsc --build
|
|
# builder_run_action test mocha
|