Skip to content

Commit

Permalink
All scripts (except 'build') now skip build step
Browse files Browse the repository at this point in the history
  • Loading branch information
DarrenSem committed Aug 25, 2023
1 parent 6b528da commit 005fdff
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@
"scripts": {
"preview": "START \"\" ./index.html",
"clean": "node clean.js",
"watch": "npm run clean && tsc --watch",
"copycss": " copy /y \".\\src\\*.css\" \".\\dist\" > NUL || cp \"./src/\"*.css \"./dist\" ",
"build": "npm run clean && tsc && npm run copycss",
"start": "npm run build && npm run preview",
"test": "npm run build && node ./dist/calc.test.js",
"copycss": " copy /y \".\\src\\*.css\" \".\\dist\" > NUL || cp \"./src/\"*.css \"./dist\" ",
"gh": " START \"\" /b \"C:\\data\\apps\\git\\gh-pages merge from master.bat\" ",
"watch": "ECHO.Watching from latest build... && pause && tsc --build --watch",
"test": "ECHO.Testing latest build... && node ./dist/calc.test.js",
"build": "ECHO.Starting new build... && npm run clean && tsc && npm run copycss && npm test && ECHO.Build passed tests.",
"start": "ECHO.Starting browser with latest build... && npm run preview",
"_publish_git_commands_": "git checkout gh-pages && git merge master && git push origin gh-pages && git checkout -",
"_publish_maybe_override_is_not_necessary_": "npm run build && npm run gh . && git checkout -",
"publish": "npm run gh . && git checkout -"
"publish": "ECHO.Publishing latest build... && npm test && npm run gh . && git checkout - && ECHO.DONE."
},
"keywords": [
"AWS",
Expand Down

0 comments on commit 005fdff

Please sign in to comment.