Skip to content

Commit

Permalink
* apply rimraf script from zeromq#26
Browse files Browse the repository at this point in the history
  • Loading branch information
wg138940 committed Aug 26, 2023
1 parent 4336086 commit 6a3a015
Show file tree
Hide file tree
Showing 2 changed files with 107 additions and 4 deletions.
105 changes: 104 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@
"description": "Port of zeromq to Javascript over Web Socket transport",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"private": true,
"scripts": {
"prepare": "npm run build",
"build": "tsc -p tsconfig.json",
"check": "tsc -p tsconfig.json --noEmit",
"clear": "rm -rf lib/ dist/ coverage/ .nyc_output/",
"clear:all": "rm -rf node_modules/ npm-debug.log && npm run clear",
"clear": "rimraf lib/ dist/ coverage/ .nyc_output/",
"clear:all": "rimraf node_modules/ npm-debug.log && npm run clear",
"build:test": "npm run clear && tsc -p tsconfig-test.json",
"test": "npm run build:test && jasmine --reporter=jasmine-console-reporter --config=jasmine.json"
},
Expand Down Expand Up @@ -41,6 +40,7 @@
"@types/websocket": "^1.0.6",
"jasmine": "^5.1.0",
"jasmine-console-reporter": "^3.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
Expand Down

0 comments on commit 6a3a015

Please sign in to comment.