Skip to content

Commit

Permalink
fix(npm): update package scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
nmsmith22389 committed May 17, 2020
1 parent 8e64dc8 commit 0958946
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,7 @@ typings/

# Build Folders & Files
dist/

./eslint/

# System Files
.DS_Store
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@
"types"
],
"scripts": {
"build": "ts-node-script scripts/build.ts",
"build-old": "tsc -b tsconfig.build.json",
"clean": "tsc -b tsconfig.build.json --clean",
"prepare": "npm run clean; npm run build",
"build-old": "ts-node-script scripts/build.ts",
"build": "tsc -b tsconfig.build.json",
"clean": "rm -r ./dist",
"format": "prettier --write \"./**/*.{ts,js,json,md}\" --ignore-path ../../.prettierignore",
"get-config": "ts-node-script -O '{\"noResolve\": false}' scripts/get-config.ts",
"get-config": "ts-node-script scripts/get-config.ts",
"lint": "eslint . --ext .js,.ts",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
Expand Down

0 comments on commit 0958946

Please sign in to comment.