Procházet zdrojové kódy

Add packaging command to force a full rebuild

Michal Malý před 3 roky
rodič
revize
aaec452bc2
2 změnil soubory, kde provedl 7 přidání a 0 odebrání
  1. 5 0
      README.md
  2. 2 0
      package.json

+ 5 - 0
README.md

@@ -68,6 +68,11 @@ If working on just the viewer, ``npm run watch-viewer`` will provide shorter com
 
 Debug/production mode in browsers can be turned on/off during runtime by calling ``setMolStarDebugMode(true/false, true/false)`` from the dev console.
 
+### Force full rebuild
+    npm run rebuild
+
+Force a full rebuild to resolve build errors that may occassionally arise. Once a force rebuild finishes successfully, incremental `npm run build` can be used again for further builds.
+
 ### Build for production:
     NODE_ENV=production npm run build
 

+ 2 - 0
package.json

@@ -16,8 +16,10 @@
     "test": "npm run lint && jest",
     "jest": "jest",
     "build": "npm run build-tsc && npm run build-extra && npm run build-webpack",
+    "rebuild": "npm run rebuild-tsc && npm run build-extra && npm run build-webpack",
     "build-viewer": "npm run build-tsc && npm run build-extra && npm run build-webpack-viewer",
     "build-tsc": "concurrently \"tsc --incremental\" \"tsc --build tsconfig.commonjs.json --incremental\"",
+    "rebuild-tsc": "concurrently \"tsc\" \"tsc --build tsconfig.commonjs.json --incremental\"",
     "build-extra": "cpx \"src/**/*.{scss,html,ico}\" lib/",
     "build-webpack": "webpack --mode production --config ./webpack.config.production.js",
     "build-webpack-viewer": "webpack --mode production --config ./webpack.config.viewer.js",