Skip to content

Commit 40422e8

Browse files
committed
Merge branch 'gh-pages' of github.com:jviereck/regjsparser into gh-pages
2 parents ac51d2b + 2fbb816 commit 40422e8

File tree

4 files changed

+441
-259
lines changed

4 files changed

+441
-259
lines changed

package.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,12 @@
1515
},
1616
"scripts": {
1717
"lint": "eslint --max-warnings 0 .",
18-
"test": "run-p test:* && npm run lint",
18+
"test": "run-p test:* lint",
1919
"test:src": "node test/index.js",
20-
"test:types": "tsc test/types.ts --noEmit"
20+
"test:types": "tsc test/types.ts --noEmit",
21+
"bench:baseline": "node ./tools/bench/index.mjs baseline",
22+
"bench:current": "node ./tools/bench/index.mjs current",
23+
"bench": "run-s bench:*"
2124
},
2225
"files": [
2326
"bin/",
@@ -36,6 +39,8 @@
3639
"globals": "^15.9.0",
3740
"npm-run-all": "^4.1.5",
3841
"regenerate": "~1.0.1",
42+
"regjsparser": "^0.11.2",
43+
"tinybench": "^2.9.0",
3944
"typescript": "^4.5.2"
4045
}
4146
}

0 commit comments

Comments
 (0)