2023-02-07 09:48:04 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Script to create node_modules.tar.xz for the tests.
|
|
|
|
# Adapted from .github/workflows/test.yml
|
|
|
|
# Execute this in an extracted github archive/cloned repository
|
|
|
|
# Note: The pathname MUST NOT include any ':' as is common
|
|
|
|
# in checked out obs package directories.
|
|
|
|
|
2023-06-12 22:09:12 +00:00
|
|
|
# requires: yarn
|
2023-02-07 09:48:04 +00:00
|
|
|
|
|
|
|
pushd javascript
|
|
|
|
yarn
|
|
|
|
yarn build
|
|
|
|
popd
|
|
|
|
|
|
|
|
tar cJf node_modules.tar.xz \
|
|
|
|
node_modules \
|
|
|
|
javascript/lib \
|
|
|
|
javascript/tsconfig.tsbuildinfo
|