Skip to content

Commit

Permalink
update babel-related packages
Browse files Browse the repository at this point in the history
  • Loading branch information
dartess authored and Daniel15 committed Oct 9, 2023
1 parent e70c31c commit f50f74c
Show file tree
Hide file tree
Showing 3 changed files with 407 additions and 315 deletions.
18 changes: 9 additions & 9 deletions package.json
Expand Up @@ -24,15 +24,15 @@
"author": "Felix Kling",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.13.16",
"@babel/parser": "^7.13.16",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"@babel/preset-flow": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.13.16",
"@babel/core": "^7.23.0",
"@babel/parser": "^7.23.0",
"@babel/plugin-transform-class-properties": "^7.22.5",
"@babel/plugin-transform-modules-commonjs": "^7.23.0",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.22.11",
"@babel/plugin-transform-optional-chaining": "^7.23.0",
"@babel/preset-flow": "^7.22.15",
"@babel/preset-typescript": "^7.23.0",
"@babel/register": "^7.22.15",
"babel-core": "^7.0.0-bridge.0",
"chalk": "^4.1.2",
"flow-parser": "0.*",
Expand Down
6 changes: 3 additions & 3 deletions src/Worker.js
Expand Up @@ -71,9 +71,9 @@ function setup(tr, babel) {
babelrc: false,
presets,
plugins: [
require('@babel/plugin-proposal-class-properties').default,
require('@babel/plugin-proposal-nullish-coalescing-operator').default,
require('@babel/plugin-proposal-optional-chaining').default,
require('@babel/plugin-transform-class-properties').default,
require('@babel/plugin-transform-nullish-coalescing-operator').default,
require('@babel/plugin-transform-optional-chaining').default,
require('@babel/plugin-transform-modules-commonjs').default,
require('@babel/plugin-transform-private-methods').default,
],
Expand Down

1 comment on commit f50f74c

@kimjh96
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

need version update..

Please sign in to comment.