|
10 | 10 | "url": "https://github.com/jupyter/nbclassic.git"
|
11 | 11 | },
|
12 | 12 | "scripts": {
|
13 |
| - "bower": "bower install", |
14 |
| - "build": "python setup.py js css", |
| 13 | + "bower:copy-marked": "node tools/copy-marked.js", |
| 14 | + "bower": "bower install && npm run bower:copy-marked", |
15 | 15 | "build:webpack": "webpack --mode production",
|
| 16 | + "build:notebook": "node tools/build-main.js notebook", |
| 17 | + "build:tree": "node tools/build-main.js tree", |
| 18 | + "build:edit": "node tools/build-main.js edit", |
| 19 | + "build:terminal": "node tools/build-main.js terminal", |
| 20 | + "build:auth": "node tools/build-main.js auth", |
| 21 | + "build:fr-translation": "po2json -p -F -f jed1.x -d nbjs nbclassic/i18n/fr_FR/LC_MESSAGES/nbjs.po nbclassic/i18n/fr_FR/LC_MESSAGES/nbjs.json", |
| 22 | + "build:ja-translation": "po2json -p -F -f jed1.x -d nbjs nbclassic/i18n/ja_JP/LC_MESSAGES/nbjs.po nbclassic/i18n/ja_JP/LC_MESSAGES/nbjs.json", |
| 23 | + "build:nl-translation": "po2json -p -F -f jed1.x -d nbjs nbclassic/i18n/nl/LC_MESSAGES/nbjs.po nbclassic/i18n/nl/LC_MESSAGES/nbjs.json", |
| 24 | + "build:ru-translation": "po2json -p -F -f jed1.x -d nbjs nbclassic/i18n/ru_RU/LC_MESSAGES/nbjs.po nbclassic/i18n/ru_RU/LC_MESSAGES/nbjs.json", |
| 25 | + "build:zh-translation": "po2json -p -F -f jed1.x -d nbjs nbclassic/i18n/zh_CN/LC_MESSAGES/nbjs.po nbclassic/i18n/zh_CN/LC_MESSAGES/nbjs.json", |
| 26 | + "build:translations": "npm run build:fr-translation && npm run build:ja-translation && npm run build:nl-translation && npm run build:ru-translation && npm run build:zh-translation", |
| 27 | + "build:js": "npm run build:notebook && npm run build:tree && npm run build:edit && npm run build:terminal && npm run build:auth && npm run build:translations", |
| 28 | + "build:css-ipython": "lessc --source-map --include-path='nbclassic/static/style' nbclassic/static/style/ipython.less nbclassic/static/style/ipython.min.css", |
| 29 | + "build:css-style": "lessc --source-map --include-path='nbclassic/static/style' nbclassic/static/style/style.less nbclassic/static/style/style.min.css", |
| 30 | + "build:css": "npm run build:css-ipython && npm run build:css-style", |
| 31 | + "build": "npm run bower && npm run build:webpack && npm run build:js && npm run build:css", |
16 | 32 | "build:watch": "npm run watch",
|
17 |
| - "watch": "onchange 'nbclassic/static/**/!(*.min).js' 'nbclassic/static/**/*.less' 'bower.json' -- npm run build" |
| 33 | + "watch:css": "onchange 'nbclassic/static/**/*.less' -- npm run build:css", |
| 34 | + "watch:js": "onchange 'nbclassic/static/**/!(*.min).js' 'bower.json' -- npm run build:js", |
| 35 | + "watch": "npm-run-all --parallel watch:*" |
18 | 36 | },
|
19 | 37 | "devDependencies": {
|
20 | 38 | "@babel/core": "^7.15.0",
|
|
0 commit comments