Skip to content

Commit

Permalink
chore: suppress ExperimentalWarning in build script (#1007)
Browse files Browse the repository at this point in the history
  • Loading branch information
verytactical authored Oct 29, 2024
1 parent 24a2821 commit 859f972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"gen": "yarn gen:grammar && yarn gen:pack && yarn gen:compiler",
"clean": "rm -fr dist",
"cleanall": "rm -fr dist node_modules",
"build": "tsc && ts-node ./scripts/copy-files",
"build": "tsc && node --no-warnings=ExperimentalWarning -r ts-node/register ./scripts/copy-files",
"test": "jest",
"coverage": "cross-env COVERAGE=true jest",
"release": "yarn clean && yarn build && yarn coverage && yarn release-it --npm.yarn1",
Expand Down

0 comments on commit 859f972

Please sign in to comment.