1
0
python-jupyter-ydoc/create_node_modules.sh
Benjamin Greiner 25c32fefbf Accepting request 1072977 from home:bnavigator:branches:devel:languages:python:jupyter
- Downgrade to 0.2.3
  * Rename JS package to @jupyter/ydoc #97 (@jtpio)
- Released as patch release for 0.2 branch
  * jupyterlab 3.6 requires ydoc~=0.2.2

- Provide underscore name

OBS-URL: https://build.opensuse.org/request/show/1072977
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-jupyter-ydoc?expand=0&rev=4
2023-03-19 21:12:36 +00:00

26 lines
530 B
Bash

#!/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.
# requires: yarn, npm
pushd javascript
yarn
yarn build
popd
pushd tests
npm install
popd
tar cJf node_modules.tar.xz \
yarn.lock \
node_modules \
tests/node_modules \
javascript/lib \
javascript/node_modules \
javascript/tsconfig.tsbuildinfo