Skip to content

Commit

Permalink
replace npm run compile with npm run build
Browse files Browse the repository at this point in the history
  • Loading branch information
MZanggl committed Jun 24, 2020
1 parent 82b0b88 commit 015695f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ promise.isEmpty // false

### Compile project

`npm run compile`
`npm run build`

### Run tests

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"scripts": {
"clean": "rm -rf dist",
"test": "node japaFile.js",
"compile": "npm run clean && tsc",
"prepublish": "npm run compile",
"build": "npm run clean && tsc",
"prepublish": "npm run build",
"postpublish": "npm run clean"
},
"author": "Michael Zanggl",
Expand Down

0 comments on commit 015695f

Please sign in to comment.