Skip to content
This repository has been archived by the owner on Jan 29, 2021. It is now read-only.

Commit

Permalink
Fix command loop
Browse files Browse the repository at this point in the history
  • Loading branch information
theodoreb committed Nov 14, 2020
1 parent 10ef1b8 commit 3ba8479
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,14 @@
"terser": "^5.3.8"
},
"scripts": {
"build": "node ./build/dist.js",
"prepublish": "npm install && npm run validate",
"validate": "npm run test && npm pack --dry-run",
"build": "node ./build/dist.js && npm run docs",
"test": "web-test-runner 'test/*.test.html' --node-resolve --playwright --browsers chromium firefox",
"lint": "eslint src/",
"docs": "jsdoc2md src/once.js > API.md",
"dev": "",
"pretest": "npm run lint && npm run build",
"prepare": "npm test",
"preversion": "npm test",
"version": "npm run build && git add -A dist -f",
"//postversion": "git push && git push --tags"
"version": "npm run build && git add -A dist -f && git add -A API.md",
"postversion": "git push && git push --tags"
}
}

0 comments on commit 3ba8479

Please sign in to comment.