* We need to keep most of the js lock (yarn.lock) because 0.12
is still not fully updatable with jupyterlab 4. This will
hopefully change with 0.13, which is at rc stage
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-bqplot?expand=0&rev=48
12 lines
251 B
Bash
12 lines
251 B
Bash
#!/bin/sh
|
|
#
|
|
# Script to create node_modules.tar.xz
|
|
# needs bower, webpack and webpack-cli installed
|
|
# apply bqplot-js.patch before running this script
|
|
|
|
pushd js
|
|
jlpm install
|
|
jlpm run build
|
|
popd
|
|
tar cJf node_modules.tar.xz js/node_modules js/yarn.lock
|