version OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-bqplot?expand=0&rev=46
12 lines
230 B
Bash
12 lines
230 B
Bash
#!/bin/sh
|
|
#
|
|
# Script to create node_modules.tar.xz
|
|
# needs bower, webpack and webpack-cli installed
|
|
|
|
pushd js
|
|
sed -i '/builder/ s/\^3/\^4/' package.json
|
|
jlpm install
|
|
jlpm run build
|
|
popd
|
|
tar cJf node_modules.tar.xz js/node_modules
|