You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The idea of this is to have a npm script that can clean up files copied from node_modules folder to the place we want by webpack. This enhancement have at least following two benefits:
Reduce the complexity of developing front-end javascript/css based on new npm packages
boost the robustness of the deployment through deploy.sh
That is because currently we need to manually clean up files collected by webpack.
High level usage
Run this command: npm run clean.
When we want update (deploy) new genomics-workspace from one version to another version, the procedure will be following:
npm run clean
use git switch to newer version
npm run build
deploy.sh
Low level details
The current implementation in my mind is to have a script would remove files listed in .gitignore, but would not remove media folder.
The text was updated successfully, but these errors were encountered:
The idea of this is to have a npm script that can clean up files copied from node_modules folder to the place we want by webpack. This enhancement have at least following two benefits:
That is because currently we need to manually clean up files collected by webpack.
High level usage
Run this command:
npm run clean
.When we want update (deploy) new genomics-workspace from one version to another version, the procedure will be following:
npm run clean
git
switch to newer versionnpm run build
deploy.sh
Low level details
The current implementation in my mind is to have a script would remove files listed in .gitignore, but would not remove media folder.
The text was updated successfully, but these errors were encountered: