Skip to content

Commit ad9381a

Browse files
committed
⬆️ deps: Upgrade dependency @babel/core to v7.22.17
1 parent 2600061 commit ad9381a

File tree

2 files changed

+50
-9
lines changed

2 files changed

+50
-9
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"@iterable-iterator/slice": "^1.0.1"
7272
},
7373
"devDependencies": {
74-
"@babel/core": "7.22.15",
74+
"@babel/core": "7.22.17",
7575
"@babel/preset-env": "7.22.15",
7676
"@babel/register": "7.22.15",
7777
"@commitlint/cli": "17.7.1",

yarn.lock

Lines changed: 49 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,21 +52,21 @@
5252
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.9.tgz#71cdb00a1ce3a329ce4cbec3a44f9fef35669730"
5353
integrity sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==
5454

55-
"@babel/core@7.22.15":
56-
version "7.22.15"
57-
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.15.tgz#15d4fd03f478a459015a4b94cfbb3bd42c48d2f4"
58-
integrity sha512-PtZqMmgRrvj8ruoEOIwVA3yoF91O+Hgw9o7DAUTNBA6Mo2jpu31clx9a7Nz/9JznqetTR6zwfC4L3LAjKQXUwA==
55+
"@babel/core@7.22.17":
56+
version "7.22.17"
57+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.17.tgz#2f9b0b395985967203514b24ee50f9fd0639c866"
58+
integrity sha512-2EENLmhpwplDux5PSsZnSbnSkB3tZ6QTksgO25xwEL7pIDcNOMhF5v/s6RzwjMZzZzw9Ofc30gHv5ChCC8pifQ==
5959
dependencies:
6060
"@ampproject/remapping" "^2.2.0"
6161
"@babel/code-frame" "^7.22.13"
6262
"@babel/generator" "^7.22.15"
6363
"@babel/helper-compilation-targets" "^7.22.15"
64-
"@babel/helper-module-transforms" "^7.22.15"
64+
"@babel/helper-module-transforms" "^7.22.17"
6565
"@babel/helpers" "^7.22.15"
66-
"@babel/parser" "^7.22.15"
66+
"@babel/parser" "^7.22.16"
6767
"@babel/template" "^7.22.15"
68-
"@babel/traverse" "^7.22.15"
69-
"@babel/types" "^7.22.15"
68+
"@babel/traverse" "^7.22.17"
69+
"@babel/types" "^7.22.17"
7070
convert-source-map "^1.7.0"
7171
debug "^4.1.0"
7272
gensync "^1.0.0-beta.2"
@@ -404,6 +404,17 @@
404404
"@babel/helper-split-export-declaration" "^7.22.6"
405405
"@babel/helper-validator-identifier" "^7.22.15"
406406

407+
"@babel/helper-module-transforms@^7.22.17":
408+
version "7.22.17"
409+
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.17.tgz#7edf129097a51ccc12443adbc6320e90eab76693"
410+
integrity sha512-XouDDhQESrLHTpnBtCKExJdyY4gJCdrvH2Pyv8r8kovX2U8G0dRUOT45T9XlbLtuu9CLXP15eusnkprhoPV5iQ==
411+
dependencies:
412+
"@babel/helper-environment-visitor" "^7.22.5"
413+
"@babel/helper-module-imports" "^7.22.15"
414+
"@babel/helper-simple-access" "^7.22.5"
415+
"@babel/helper-split-export-declaration" "^7.22.6"
416+
"@babel/helper-validator-identifier" "^7.22.15"
417+
407418
"@babel/helper-module-transforms@^7.22.5":
408419
version "7.22.5"
409420
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz#0f65daa0716961b6e96b164034e737f60a80d2ef"
@@ -695,6 +706,11 @@
695706
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.15.tgz#d34592bfe288a32e741aa0663dbc4829fcd55160"
696707
integrity sha512-RWmQ/sklUN9BvGGpCDgSubhHWfAx24XDTDObup4ffvxaYsptOg2P3KG0j+1eWKLxpkX0j0uHxmpq2Z1SP/VhxA==
697708

709+
"@babel/parser@^7.22.16":
710+
version "7.22.16"
711+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.16.tgz#180aead7f247305cce6551bea2720934e2fa2c95"
712+
integrity sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==
713+
698714
"@babel/parser@^7.22.5":
699715
version "7.22.5"
700716
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.5.tgz#721fd042f3ce1896238cf1b341c77eb7dee7dbea"
@@ -1971,6 +1987,22 @@
19711987
debug "^4.1.0"
19721988
globals "^11.1.0"
19731989

1990+
"@babel/traverse@^7.22.17":
1991+
version "7.22.17"
1992+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.17.tgz#b23c203ab3707e3be816043081b4a994fcacec44"
1993+
integrity sha512-xK4Uwm0JnAMvxYZxOVecss85WxTEIbTa7bnGyf/+EgCL5Zt3U7htUpEOWv9detPlamGKuRzCqw74xVglDWpPdg==
1994+
dependencies:
1995+
"@babel/code-frame" "^7.22.13"
1996+
"@babel/generator" "^7.22.15"
1997+
"@babel/helper-environment-visitor" "^7.22.5"
1998+
"@babel/helper-function-name" "^7.22.5"
1999+
"@babel/helper-hoist-variables" "^7.22.5"
2000+
"@babel/helper-split-export-declaration" "^7.22.6"
2001+
"@babel/parser" "^7.22.16"
2002+
"@babel/types" "^7.22.17"
2003+
debug "^4.1.0"
2004+
globals "^11.1.0"
2005+
19742006
"@babel/traverse@^7.22.5":
19752007
version "7.22.5"
19762008
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.5.tgz#44bd276690db6f4940fdb84e1cb4abd2f729ccd1"
@@ -2021,6 +2053,15 @@
20212053
"@babel/helper-validator-identifier" "^7.22.15"
20222054
to-fast-properties "^2.0.0"
20232055

2056+
"@babel/types@^7.22.17":
2057+
version "7.22.17"
2058+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.17.tgz#f753352c4610ffddf9c8bc6823f9ff03e2303eee"
2059+
integrity sha512-YSQPHLFtQNE5xN9tHuZnzu8vPr61wVTBZdfv1meex1NBosa4iT05k/Jw06ddJugi4bk7The/oSwQGFcksmEJQg==
2060+
dependencies:
2061+
"@babel/helper-string-parser" "^7.22.5"
2062+
"@babel/helper-validator-identifier" "^7.22.15"
2063+
to-fast-properties "^2.0.0"
2064+
20242065
"@babel/types@^7.22.5":
20252066
version "7.22.5"
20262067
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.5.tgz#cd93eeaab025880a3a47ec881f4b096a5b786fbe"

0 commit comments

Comments
 (0)