Skip to content

Commit 5dbda0c

Browse files
authored
build(deps-dev): replace the deprecated libraries (#1559)
Replace `@babel/plugin-proposal-class-properties` with `@babel/plugin-transform-class-properties` See: https://www.npmjs.com/package/@babel/plugin-proposal-class-properties
1 parent 89b9625 commit 5dbda0c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
"devDependencies": {
2424
"@babel/core": "^7.23.9",
25-
"@babel/plugin-proposal-class-properties": "^7.18.6",
25+
"@babel/plugin-transform-class-properties": "^7.23.3",
2626
"@babel/preset-env": "^7.23.9",
2727
"@commitlint/cli": "^18.6.1",
2828
"@commitlint/config-conventional": "^18.6.2",

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function build(filename) {
2323
babel({
2424
babelHelpers: 'bundled',
2525
presets: ['@babel/env'],
26-
plugins: ['@babel/plugin-proposal-class-properties']
26+
plugins: ['@babel/plugin-transform-class-properties']
2727
}),
2828
license({
2929
banner: {

0 commit comments

Comments
 (0)