forked from pool/python-nbclassic
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-nbclassic?expand=0&rev=45
9 lines
158 B
Bash
9 lines
158 B
Bash
#!/bin/sh
|
|
#
|
|
# Script to create node_modules.tar.xz
|
|
|
|
npm install
|
|
python3 setup.py jsdeps
|
|
|
|
tar cJf node_modules.tar.xz node_modules nbclassic/static/components
|