Skip to content

Commit

Permalink
fix(deps): update babel monorepo to ~7.22.0 #670
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Jun 10, 2023
1 parent 1d7005f commit 0d7b8c0
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion examples/umd/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"outDir": "./lib",
"strict": true,
"declaration": true,
"moduleResolution": "nodenext",
"moduleResolution": "node",
"skipLibCheck": true
},
"files": ["src/index.ts", "src/utils/sum.ts", "src/utils/Test.ts", "src/utils/a/a.ts"],
Expand Down
3 changes: 2 additions & 1 deletion examples/vue/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true
"resolveJsonModule": true,
"types": ["node"]
},
"include": ["src"]
}
13 changes: 7 additions & 6 deletions packages/babel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,17 @@
"node": ">=16.0.0"
},
"dependencies": {
"@babel/core": "~7.21.3",
"@babel/core": "^7.22.5",
"@babel/plugin-proposal-class-properties": "~7.18.6",
"@babel/plugin-proposal-decorators": "~7.21.0",
"@babel/plugin-proposal-decorators": "^7.22.5",
"@babel/plugin-proposal-export-default-from": "~7.18.10",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
"@babel/plugin-transform-runtime": "~7.21.0",
"@babel/preset-env": "~7.21.0",
"@babel/preset-react": "~7.18.6",
"@babel/preset-typescript": "~7.21.0",
"@babel/plugin-transform-runtime": "^7.22.5",
"@babel/plugin-transform-classes": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@tsbb/typescript": "4.1.9",
"@types/babel__core": "^7.20.0",
"@types/semver": "~7.5.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/jest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
"node": ">=16.0.0"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "~7.21.0",
"@babel/plugin-proposal-object-rest-spread": "~7.20.7",
"@babel/preset-env": "~7.21.0",
"@babel/preset-react": "~7.18.6",
"@babel/preset-typescript": "~7.21.0",
"@babel/plugin-proposal-decorators": "^7.22.5",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.0",
"babel-jest": "^29.5.0",
"babel-plugin-parameter-decorator": "^1.0.16",
Expand Down

0 comments on commit 0d7b8c0

Please sign in to comment.