Skip to content

Commit ef7dc8d

Browse files
committed
babel dep
1 parent 55aaaee commit ef7dc8d

File tree

4 files changed

+54
-21
lines changed

4 files changed

+54
-21
lines changed

.babelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
]
1818
],
1919
"plugins": [
20-
"@babel/plugin-proposal-class-properties",
20+
"@babel/plugin-transform-class-properties",
2121
"add-module-exports"
2222
]
2323
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"@babel/cli": "^7.5.5",
3939
"@babel/core": "^7.5.5",
4040
"@babel/node": "^7.5.5",
41-
"@babel/plugin-proposal-class-properties": "^7.5.5",
41+
"@babel/plugin-transform-class-properties": "^7.25.9",
4242
"@babel/preset-env": "^7.5.5",
4343
"@babel/preset-react": "^7.26.3",
4444
"@testing-library/dom": "^10.4.0",

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const config = {
1919
['@babel/preset-env', { loose: true, modules: false }],
2020
],
2121
plugins: [
22-
'@babel/plugin-proposal-class-properties',
22+
'@babel/plugin-transform-class-properties',
2323
],
2424
exclude: 'node_modules/**',
2525
}),

yarn.lock

Lines changed: 51 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -153,17 +153,18 @@
153153
lru-cache "^5.1.1"
154154
semver "^6.3.1"
155155

156-
"@babel/helper-create-class-features-plugin@^7.5.5":
157-
version "7.5.5"
158-
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.5.5.tgz#401f302c8ddbc0edd36f7c6b2887d8fa1122e5a4"
159-
integrity sha512-ZsxkyYiRA7Bg+ZTRpPvB6AbOFKTFFK4LrvTet8lInm0V468MWCaSYJE+I7v2z2r8KNLtYiV+K5kTCnR7dvyZjg==
156+
"@babel/helper-create-class-features-plugin@^7.25.9":
157+
version "7.25.9"
158+
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz#7644147706bb90ff613297d49ed5266bde729f83"
159+
integrity sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==
160160
dependencies:
161-
"@babel/helper-function-name" "^7.1.0"
162-
"@babel/helper-member-expression-to-functions" "^7.5.5"
163-
"@babel/helper-optimise-call-expression" "^7.0.0"
164-
"@babel/helper-plugin-utils" "^7.0.0"
165-
"@babel/helper-replace-supers" "^7.5.5"
166-
"@babel/helper-split-export-declaration" "^7.4.4"
161+
"@babel/helper-annotate-as-pure" "^7.25.9"
162+
"@babel/helper-member-expression-to-functions" "^7.25.9"
163+
"@babel/helper-optimise-call-expression" "^7.25.9"
164+
"@babel/helper-replace-supers" "^7.25.9"
165+
"@babel/helper-skip-transparent-expression-wrappers" "^7.25.9"
166+
"@babel/traverse" "^7.25.9"
167+
semver "^6.3.1"
167168

168169
"@babel/helper-define-map@^7.5.5":
169170
version "7.5.5"
@@ -205,6 +206,14 @@
205206
dependencies:
206207
"@babel/types" "^7.4.4"
207208

209+
"@babel/helper-member-expression-to-functions@^7.25.9":
210+
version "7.25.9"
211+
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz#9dfffe46f727005a5ea29051ac835fb735e4c1a3"
212+
integrity sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==
213+
dependencies:
214+
"@babel/traverse" "^7.25.9"
215+
"@babel/types" "^7.25.9"
216+
208217
"@babel/helper-member-expression-to-functions@^7.5.5":
209218
version "7.5.5"
210219
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.5.5.tgz#1fb5b8ec4453a93c439ee9fe3aeea4a84b76b590"
@@ -255,6 +264,13 @@
255264
dependencies:
256265
"@babel/types" "^7.0.0"
257266

267+
"@babel/helper-optimise-call-expression@^7.25.9":
268+
version "7.25.9"
269+
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz#3324ae50bae7e2ab3c33f60c9a877b6a0146b54e"
270+
integrity sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==
271+
dependencies:
272+
"@babel/types" "^7.25.9"
273+
258274
"@babel/helper-plugin-utils@^7.0.0":
259275
version "7.0.0"
260276
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250"
@@ -283,6 +299,15 @@
283299
"@babel/traverse" "^7.1.0"
284300
"@babel/types" "^7.0.0"
285301

302+
"@babel/helper-replace-supers@^7.25.9":
303+
version "7.25.9"
304+
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz#ba447224798c3da3f8713fc272b145e33da6a5c5"
305+
integrity sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==
306+
dependencies:
307+
"@babel/helper-member-expression-to-functions" "^7.25.9"
308+
"@babel/helper-optimise-call-expression" "^7.25.9"
309+
"@babel/traverse" "^7.25.9"
310+
286311
"@babel/helper-replace-supers@^7.5.5":
287312
version "7.5.5"
288313
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.5.5.tgz#f84ce43df031222d2bad068d2626cb5799c34bc2"
@@ -301,6 +326,14 @@
301326
"@babel/template" "^7.1.0"
302327
"@babel/types" "^7.0.0"
303328

329+
"@babel/helper-skip-transparent-expression-wrappers@^7.25.9":
330+
version "7.25.9"
331+
resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz#0b2e1b62d560d6b1954893fd2b705dc17c91f0c9"
332+
integrity sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==
333+
dependencies:
334+
"@babel/traverse" "^7.25.9"
335+
"@babel/types" "^7.25.9"
336+
304337
"@babel/helper-split-export-declaration@^7.4.4":
305338
version "7.4.4"
306339
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677"
@@ -392,14 +425,6 @@
392425
"@babel/helper-remap-async-to-generator" "^7.1.0"
393426
"@babel/plugin-syntax-async-generators" "^7.2.0"
394427

395-
"@babel/plugin-proposal-class-properties@^7.5.5":
396-
version "7.5.5"
397-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.5.5.tgz#a974cfae1e37c3110e71f3c6a2e48b8e71958cd4"
398-
integrity sha512-AF79FsnWFxjlaosgdi421vmYG6/jg79bVD0dpD44QdgobzHKuLZ6S3vl8la9qIeSwGi8i1fS0O1mfuDAAdo1/A==
399-
dependencies:
400-
"@babel/helper-create-class-features-plugin" "^7.5.5"
401-
"@babel/helper-plugin-utils" "^7.0.0"
402-
403428
"@babel/plugin-proposal-dynamic-import@^7.5.0":
404429
version "7.5.0"
405430
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.5.0.tgz#e532202db4838723691b10a67b8ce509e397c506"
@@ -626,6 +651,14 @@
626651
"@babel/helper-plugin-utils" "^7.0.0"
627652
lodash "^4.17.13"
628653

654+
"@babel/plugin-transform-class-properties@^7.25.9":
655+
version "7.25.9"
656+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz#a8ce84fedb9ad512549984101fa84080a9f5f51f"
657+
integrity sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==
658+
dependencies:
659+
"@babel/helper-create-class-features-plugin" "^7.25.9"
660+
"@babel/helper-plugin-utils" "^7.25.9"
661+
629662
"@babel/plugin-transform-classes@^7.5.5":
630663
version "7.5.5"
631664
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.5.5.tgz#d094299d9bd680a14a2a0edae38305ad60fb4de9"

0 commit comments

Comments
 (0)