Skip to content

Commit

Permalink
Merge pull request #152 from babel/perf
Browse files Browse the repository at this point in the history
Improve parsing performance
  • Loading branch information
jviereck authored Oct 29, 2024
2 parents ca07e79 + 564ac33 commit 2fbb816
Show file tree
Hide file tree
Showing 4 changed files with 441 additions and 259 deletions.
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@
},
"scripts": {
"lint": "eslint --max-warnings 0 .",
"test": "run-p test:* && npm run lint",
"test": "run-p test:* lint",
"test:src": "node test/index.js",
"test:types": "tsc test/types.ts --noEmit"
"test:types": "tsc test/types.ts --noEmit",
"bench:baseline": "node ./tools/bench/index.mjs baseline",
"bench:current": "node ./tools/bench/index.mjs current",
"bench": "run-s bench:*"
},
"files": [
"bin/",
Expand All @@ -34,6 +37,8 @@
"globals": "^15.9.0",
"npm-run-all": "^4.1.5",
"regenerate": "~1.0.1",
"regjsparser": "^0.11.2",
"tinybench": "^2.9.0",
"typescript": "^4.5.2"
}
}
Loading

0 comments on commit 2fbb816

Please sign in to comment.