Skip to content

Commit

Permalink
Improved npm scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
PKief committed Mar 20, 2019
1 parent 5f04a9d commit 85365f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -178,20 +178,20 @@
}
},
"scripts": {
"build": "npm run compile:dev && npm run post-compile",
"build": "npm run compile:dev && npm run postcompile",
"check": "ts-node ./src/scripts/icons/checks",
"compile": "webpack --mode production",
"compile:dev": "webpack --mode none",
"compile:watch": "webpack --mode none --watch",
"generateJson": "ts-node ./src/scripts/icons/generateJson.ts",
"lint": "tslint -c tslint.json ./src/**/*.ts",
"post-compile": "npm run generateJson && npm run check",
"postcompile": "npm run generateJson && npm run check",
"postinstall": "node ./node_modules/vscode/bin/install",
"pretest": "npm run build && npm run test-compile",
"preview": "ts-node ./src/scripts/preview",
"test": "node ./node_modules/vscode/bin/test",
"test-compile": "tsc -p ./",
"vscode:prepublish": "npm run lint && npm run compile && npm run post-compile"
"vscode:prepublish": "npm run lint && npm run compile"
},
"dependencies": {
"lodash.merge": "^4.6.1",
Expand Down

0 comments on commit 85365f2

Please sign in to comment.