Benjamin Greiner
d56a886c78
* update cross-spawn module to 7.0.6 - CVE-2024-21538 (bsc#1233851) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbclassic?expand=0&rev=47
10 lines
207 B
Bash
10 lines
207 B
Bash
#!/bin/sh
|
|
#
|
|
# Script to create node_modules.tar.xz
|
|
# needs bower, webpack and webpack-cli installed
|
|
|
|
npm install
|
|
python3 setup.py jsdeps
|
|
|
|
tar cJf node_modules.tar.xz node_modules nbclassic/static/components
|