Skip to content

Commit

Permalink
fix build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
gmaclennan committed Jul 26, 2023
1 parent c3884d9 commit 21e9baa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"scripts": {
"example": "node examples/schema_test.js",
"build": "npm-run-all build:clean build:generate build:tsc build:copy build:doc",
"build:clean": "rm -rf types dist docs intermediate generated",
"build:clean": "rimraf types dist docs intermediate generated",
"build:generate": "node scripts/generate.js",
"build:tsc": "tsc",
"build:copy": "cp -r intermediate/{generated,src}/* dist/",
"build:copy": "cpy \"intermediate/generated/**\" \"intermediate/src/**\" dist/",
"build:doc": "typedoc --plugin typedoc-plugin-markdown",
"prepublishOnly": "npm run build",
"test": "tape 'test/**/*.js'"
Expand Down

0 comments on commit 21e9baa

Please sign in to comment.