File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
{{cookiecutter.github_project_name}} Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 29
29
"url" : " https://github.com/{{ cookiecutter.github_organization_name }}/{{ cookiecutter.github_project_name }}"
30
30
},
31
31
"scripts" : {
32
- "build" : " npm run build:lib && npm run build:nbextension && npm run build:labextension" ,
32
+ "build" : " npm run build:lib && npm run build:nbextension && npm run build:labextension:dev" ,
33
+ "build:prod" : " npm run build:lib && npm run build:nbextension && npm run build:labextension" ,
33
34
"build:labextension" : " jupyter labextension build ." ,
34
35
"build:labextension:dev" : " jupyter labextension build --development True ." ,
35
36
"build:lib" : " tsc" ,
Original file line number Diff line number Diff line change 60
60
cmdclass = create_cmdclass ('jsdeps' , package_data_spec = package_data_spec ,
61
61
data_files_spec = data_files_spec )
62
62
cmdclass ['jsdeps' ] = combine_commands (
63
- install_npm (HERE , build_cmd = 'build' ),
63
+ install_npm (HERE , build_cmd = 'build:prod ' ),
64
64
ensure_targets (jstargets ),
65
65
)
66
66
You can’t perform that action at this time.
0 commit comments