Skip to content

Commit

Permalink
chore: update more babel deps (#3576)
Browse files Browse the repository at this point in the history
  • Loading branch information
nolanlawson authored Jun 16, 2023
1 parent d00e588 commit 66cd046
Show file tree
Hide file tree
Showing 5 changed files with 713 additions and 1,057 deletions.
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,12 @@
"test:performance:best:ci": "nx test:best:ci @lwc/perf-benchmarks",
"release:version": "./scripts/release/version.js"
},
"//": {
"@babel/helper-explode-assignable-expression": "required for rollup-plugin-compat"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/helper-explode-assignable-expression": "^7.18.6",
"@babel/preset-env": "^7.22.5",
"@commitlint/cli": "^17.6.5",
"@lwc/eslint-plugin-lwc-internal": "link:./scripts/eslint-plugin",
Expand All @@ -38,7 +42,6 @@
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^11.1.1",
"@types/babel__core": "^7.20.1",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
Expand Down
2 changes: 1 addition & 1 deletion packages/@lwc/babel-plugin-component/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
}
},
"dependencies": {
"@babel/helper-module-imports": "7.21.4",
"@babel/helper-module-imports": "7.22.5",
"@lwc/errors": "2.49.1",
"@lwc/shared": "2.49.1",
"line-column": "~1.0.2"
Expand Down
6 changes: 3 additions & 3 deletions packages/@lwc/compiler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@
}
},
"dependencies": {
"@babel/core": "7.21.8",
"@babel/core": "7.22.5",
"@babel/plugin-proposal-async-generator-functions": "7.20.7",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.20.2",
"@babel/plugin-transform-async-to-generator": "7.20.7",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-transform-async-to-generator": "7.22.5",
"@locker/babel-plugin-transform-unforgeables": "0.19.8",
"@lwc/babel-plugin-component": "2.49.1",
"@lwc/errors": "2.49.1",
Expand Down
3 changes: 2 additions & 1 deletion scripts/jest/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@

import fs from 'fs';
import path from 'path';
import { globSync } from 'glob';
import * as glob from 'glob';
import MatcherUtils = jest.MatcherUtils;
import CustomMatcherResult = jest.CustomMatcherResult;
const { globSync } = glob;

/**
* @typedef {Object} TestFixtureConfig
Expand Down
Loading

0 comments on commit 66cd046

Please sign in to comment.