Skip to content

Commit 78ac47a

Browse files
committed
Fix "__esModule is not a recognized property" error when using a webpack.config.babel.js file (#166)
1 parent 776be52 commit 78ac47a

File tree

4 files changed

+177
-18
lines changed

4 files changed

+177
-18
lines changed

index.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -751,6 +751,14 @@ const publicApi = {
751751
// if the webpackConfig object hasn't been initialized yet.
752752
const publicApiProxy = new Proxy(publicApi, {
753753
get: (target, prop) => {
754+
if (prop === '__esModule') {
755+
// When using Babel to preprocess a webpack.config.babel.js file
756+
// (for instance if we want to use ES6 syntax) the __esModule
757+
// property needs to be whitelisted to avoid an "Unknown property"
758+
// error.
759+
return target[prop];
760+
}
761+
754762
if (typeof target[prop] === 'function') {
755763
// These methods of the public API can be called even if the
756764
// webpackConfig object hasn't been initialized yet.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"devDependencies": {
5252
"autoprefixer": "^6.7.7",
5353
"babel-plugin-transform-react-jsx": "^6.24.1",
54+
"babel-preset-es2015": "^6.24.1",
5455
"babel-preset-react": "^6.23.0",
5556
"chai": "^3.5.0",
5657
"chai-fs": "^1.0.0",

test/bin/encore.js

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,45 @@ module.exports = Encore.getWebpackConfig();
4747
done();
4848
});
4949
});
50+
51+
it('Smoke test using webpack.config.babel.js', (done) => {
52+
testSetup.emptyTmpDir();
53+
const testDir = testSetup.createTestAppDir();
54+
55+
fs.writeFileSync(
56+
path.join(testDir, '.babelrc'),
57+
`
58+
{
59+
"presets": [
60+
["es2015", { "modules": "commonjs"}]
61+
]
62+
}
63+
`
64+
);
65+
66+
fs.writeFileSync(
67+
path.join(testDir, 'webpack.config.babel.js'),
68+
`
69+
import Encore from '../../index.js';
70+
71+
Encore
72+
.setOutputPath('build/')
73+
.setPublicPath('/build')
74+
.addEntry('main', './js/no_require')
75+
;
76+
77+
const config = Encore.getWebpackConfig();
78+
export default config;
79+
`
80+
);
81+
82+
const binPath = path.resolve(__dirname, '../', '../', 'bin', 'encore.js');
83+
exec(`node ${binPath} dev --context=${testDir}`, { cwd: testDir }, (err, stdout, stderr) => {
84+
if (err) {
85+
throw new Error(`Error executing encore: ${err} ${stderr} ${stdout}`);
86+
}
87+
88+
done();
89+
});
90+
});
5091
});

yarn.lock

Lines changed: 127 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,14 @@ babel-code-frame@^6.11.0, babel-code-frame@^6.16.0, babel-code-frame@^6.22.0:
291291
esutils "^2.0.2"
292292
js-tokens "^3.0.0"
293293

294+
babel-code-frame@^6.26.0:
295+
version "6.26.0"
296+
resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
297+
dependencies:
298+
chalk "^1.1.3"
299+
esutils "^2.0.2"
300+
js-tokens "^3.0.2"
301+
294302
babel-core@^6.24.0, babel-core@^6.24.1:
295303
version "6.25.0"
296304
resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729"
@@ -507,7 +515,17 @@ babel-plugin-transform-es2015-block-scoping@^6.23.0:
507515
babel-types "^6.24.1"
508516
lodash "^4.2.0"
509517

510-
babel-plugin-transform-es2015-classes@^6.23.0:
518+
babel-plugin-transform-es2015-block-scoping@^6.24.1:
519+
version "6.26.0"
520+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
521+
dependencies:
522+
babel-runtime "^6.26.0"
523+
babel-template "^6.26.0"
524+
babel-traverse "^6.26.0"
525+
babel-types "^6.26.0"
526+
lodash "^4.17.4"
527+
528+
babel-plugin-transform-es2015-classes@^6.23.0, babel-plugin-transform-es2015-classes@^6.24.1:
511529
version "6.24.1"
512530
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
513531
dependencies:
@@ -521,33 +539,33 @@ babel-plugin-transform-es2015-classes@^6.23.0:
521539
babel-traverse "^6.24.1"
522540
babel-types "^6.24.1"
523541

524-
babel-plugin-transform-es2015-computed-properties@^6.22.0:
542+
babel-plugin-transform-es2015-computed-properties@^6.22.0, babel-plugin-transform-es2015-computed-properties@^6.24.1:
525543
version "6.24.1"
526544
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
527545
dependencies:
528546
babel-runtime "^6.22.0"
529547
babel-template "^6.24.1"
530548

531-
babel-plugin-transform-es2015-destructuring@^6.23.0:
549+
babel-plugin-transform-es2015-destructuring@^6.22.0, babel-plugin-transform-es2015-destructuring@^6.23.0:
532550
version "6.23.0"
533551
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
534552
dependencies:
535553
babel-runtime "^6.22.0"
536554

537-
babel-plugin-transform-es2015-duplicate-keys@^6.22.0:
555+
babel-plugin-transform-es2015-duplicate-keys@^6.22.0, babel-plugin-transform-es2015-duplicate-keys@^6.24.1:
538556
version "6.24.1"
539557
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
540558
dependencies:
541559
babel-runtime "^6.22.0"
542560
babel-types "^6.24.1"
543561

544-
babel-plugin-transform-es2015-for-of@^6.23.0:
562+
babel-plugin-transform-es2015-for-of@^6.22.0, babel-plugin-transform-es2015-for-of@^6.23.0:
545563
version "6.23.0"
546564
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
547565
dependencies:
548566
babel-runtime "^6.22.0"
549567

550-
babel-plugin-transform-es2015-function-name@^6.22.0:
568+
babel-plugin-transform-es2015-function-name@^6.22.0, babel-plugin-transform-es2015-function-name@^6.24.1:
551569
version "6.24.1"
552570
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
553571
dependencies:
@@ -578,30 +596,30 @@ babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-e
578596
babel-template "^6.24.1"
579597
babel-types "^6.24.1"
580598

581-
babel-plugin-transform-es2015-modules-systemjs@^6.23.0:
599+
babel-plugin-transform-es2015-modules-systemjs@^6.23.0, babel-plugin-transform-es2015-modules-systemjs@^6.24.1:
582600
version "6.24.1"
583601
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
584602
dependencies:
585603
babel-helper-hoist-variables "^6.24.1"
586604
babel-runtime "^6.22.0"
587605
babel-template "^6.24.1"
588606

589-
babel-plugin-transform-es2015-modules-umd@^6.23.0:
607+
babel-plugin-transform-es2015-modules-umd@^6.23.0, babel-plugin-transform-es2015-modules-umd@^6.24.1:
590608
version "6.24.1"
591609
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
592610
dependencies:
593611
babel-plugin-transform-es2015-modules-amd "^6.24.1"
594612
babel-runtime "^6.22.0"
595613
babel-template "^6.24.1"
596614

597-
babel-plugin-transform-es2015-object-super@^6.22.0:
615+
babel-plugin-transform-es2015-object-super@^6.22.0, babel-plugin-transform-es2015-object-super@^6.24.1:
598616
version "6.24.1"
599617
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
600618
dependencies:
601619
babel-helper-replace-supers "^6.24.1"
602620
babel-runtime "^6.22.0"
603621

604-
babel-plugin-transform-es2015-parameters@^6.23.0:
622+
babel-plugin-transform-es2015-parameters@^6.23.0, babel-plugin-transform-es2015-parameters@^6.24.1:
605623
version "6.24.1"
606624
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
607625
dependencies:
@@ -612,7 +630,7 @@ babel-plugin-transform-es2015-parameters@^6.23.0:
612630
babel-traverse "^6.24.1"
613631
babel-types "^6.24.1"
614632

615-
babel-plugin-transform-es2015-shorthand-properties@^6.22.0:
633+
babel-plugin-transform-es2015-shorthand-properties@^6.22.0, babel-plugin-transform-es2015-shorthand-properties@^6.24.1:
616634
version "6.24.1"
617635
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
618636
dependencies:
@@ -625,7 +643,7 @@ babel-plugin-transform-es2015-spread@^6.22.0:
625643
dependencies:
626644
babel-runtime "^6.22.0"
627645

628-
babel-plugin-transform-es2015-sticky-regex@^6.22.0:
646+
babel-plugin-transform-es2015-sticky-regex@^6.22.0, babel-plugin-transform-es2015-sticky-regex@^6.24.1:
629647
version "6.24.1"
630648
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
631649
dependencies:
@@ -639,13 +657,13 @@ babel-plugin-transform-es2015-template-literals@^6.22.0:
639657
dependencies:
640658
babel-runtime "^6.22.0"
641659

642-
babel-plugin-transform-es2015-typeof-symbol@^6.23.0:
660+
babel-plugin-transform-es2015-typeof-symbol@^6.22.0, babel-plugin-transform-es2015-typeof-symbol@^6.23.0:
643661
version "6.23.0"
644662
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
645663
dependencies:
646664
babel-runtime "^6.22.0"
647665

648-
babel-plugin-transform-es2015-unicode-regex@^6.22.0:
666+
babel-plugin-transform-es2015-unicode-regex@^6.22.0, babel-plugin-transform-es2015-unicode-regex@^6.24.1:
649667
version "6.24.1"
650668
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
651669
dependencies:
@@ -702,6 +720,12 @@ babel-plugin-transform-regenerator@^6.22.0:
702720
dependencies:
703721
regenerator-transform "0.9.11"
704722

723+
babel-plugin-transform-regenerator@^6.24.1:
724+
version "6.26.0"
725+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"
726+
dependencies:
727+
regenerator-transform "^0.10.0"
728+
705729
babel-plugin-transform-strict-mode@^6.24.1:
706730
version "6.24.1"
707731
resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
@@ -744,6 +768,35 @@ babel-preset-env@^1.2.2:
744768
invariant "^2.2.2"
745769
semver "^5.3.0"
746770

771+
babel-preset-es2015@^6.24.1:
772+
version "6.24.1"
773+
resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939"
774+
dependencies:
775+
babel-plugin-check-es2015-constants "^6.22.0"
776+
babel-plugin-transform-es2015-arrow-functions "^6.22.0"
777+
babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
778+
babel-plugin-transform-es2015-block-scoping "^6.24.1"
779+
babel-plugin-transform-es2015-classes "^6.24.1"
780+
babel-plugin-transform-es2015-computed-properties "^6.24.1"
781+
babel-plugin-transform-es2015-destructuring "^6.22.0"
782+
babel-plugin-transform-es2015-duplicate-keys "^6.24.1"
783+
babel-plugin-transform-es2015-for-of "^6.22.0"
784+
babel-plugin-transform-es2015-function-name "^6.24.1"
785+
babel-plugin-transform-es2015-literals "^6.22.0"
786+
babel-plugin-transform-es2015-modules-amd "^6.24.1"
787+
babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
788+
babel-plugin-transform-es2015-modules-systemjs "^6.24.1"
789+
babel-plugin-transform-es2015-modules-umd "^6.24.1"
790+
babel-plugin-transform-es2015-object-super "^6.24.1"
791+
babel-plugin-transform-es2015-parameters "^6.24.1"
792+
babel-plugin-transform-es2015-shorthand-properties "^6.24.1"
793+
babel-plugin-transform-es2015-spread "^6.22.0"
794+
babel-plugin-transform-es2015-sticky-regex "^6.24.1"
795+
babel-plugin-transform-es2015-template-literals "^6.22.0"
796+
babel-plugin-transform-es2015-typeof-symbol "^6.22.0"
797+
babel-plugin-transform-es2015-unicode-regex "^6.24.1"
798+
babel-plugin-transform-regenerator "^6.24.1"
799+
747800
babel-preset-flow@^6.23.0:
748801
version "6.23.0"
749802
resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d"
@@ -786,6 +839,13 @@ babel-runtime@^6.18.0, babel-runtime@^6.22.0:
786839
core-js "^2.4.0"
787840
regenerator-runtime "^0.10.0"
788841

842+
babel-runtime@^6.26.0:
843+
version "6.26.0"
844+
resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
845+
dependencies:
846+
core-js "^2.4.0"
847+
regenerator-runtime "^0.11.0"
848+
789849
babel-template@^6.24.1, babel-template@^6.25.0:
790850
version "6.25.0"
791851
resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071"
@@ -796,6 +856,16 @@ babel-template@^6.24.1, babel-template@^6.25.0:
796856
babylon "^6.17.2"
797857
lodash "^4.2.0"
798858

859+
babel-template@^6.26.0:
860+
version "6.26.0"
861+
resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
862+
dependencies:
863+
babel-runtime "^6.26.0"
864+
babel-traverse "^6.26.0"
865+
babel-types "^6.26.0"
866+
babylon "^6.18.0"
867+
lodash "^4.17.4"
868+
799869
babel-traverse@^6.24.1, babel-traverse@^6.25.0:
800870
version "6.25.0"
801871
resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1"
@@ -810,6 +880,20 @@ babel-traverse@^6.24.1, babel-traverse@^6.25.0:
810880
invariant "^2.2.0"
811881
lodash "^4.2.0"
812882

883+
babel-traverse@^6.26.0:
884+
version "6.26.0"
885+
resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
886+
dependencies:
887+
babel-code-frame "^6.26.0"
888+
babel-messages "^6.23.0"
889+
babel-runtime "^6.26.0"
890+
babel-types "^6.26.0"
891+
babylon "^6.18.0"
892+
debug "^2.6.8"
893+
globals "^9.18.0"
894+
invariant "^2.2.2"
895+
lodash "^4.17.4"
896+
813897
babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.25.0:
814898
version "6.25.0"
815899
resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e"
@@ -819,10 +903,23 @@ babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.25.0:
819903
lodash "^4.2.0"
820904
to-fast-properties "^1.0.1"
821905

906+
babel-types@^6.26.0:
907+
version "6.26.0"
908+
resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
909+
dependencies:
910+
babel-runtime "^6.26.0"
911+
esutils "^2.0.2"
912+
lodash "^4.17.4"
913+
to-fast-properties "^1.0.3"
914+
822915
babylon@^6.17.2:
823916
version "6.17.4"
824917
resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a"
825918

919+
babylon@^6.18.0:
920+
version "6.18.0"
921+
resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
922+
826923
balanced-match@^0.4.2:
827924
version "0.4.2"
828925
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
@@ -2465,7 +2562,7 @@ glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@~7.1.1:
24652562
once "^1.3.0"
24662563
path-is-absolute "^1.0.0"
24672564

2468-
globals@^9.0.0, globals@^9.14.0:
2565+
globals@^9.0.0, globals@^9.14.0, globals@^9.18.0:
24692566
version "9.18.0"
24702567
resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
24712568

@@ -3027,7 +3124,7 @@ js-beautify@^1.6.3:
30273124
mkdirp "~0.5.0"
30283125
nopt "~3.0.1"
30293126

3030-
js-tokens@^3.0.0:
3127+
js-tokens@^3.0.0, js-tokens@^3.0.2:
30313128
version "3.0.2"
30323129
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
30333130

@@ -3354,7 +3451,7 @@ lodash.uniq@^4.5.0:
33543451
version "4.5.0"
33553452
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
33563453

3357-
"lodash@>=3.5 <5", lodash@^4.0.0, lodash@^4.14.0, lodash@^4.17.2, lodash@^4.2.0, lodash@^4.3.0, lodash@~4.17.4:
3454+
"lodash@>=3.5 <5", lodash@^4.0.0, lodash@^4.14.0, lodash@^4.17.2, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.3.0, lodash@~4.17.4:
33583455
version "4.17.4"
33593456
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
33603457

@@ -4649,6 +4746,10 @@ regenerator-runtime@^0.10.0:
46494746
version "0.10.5"
46504747
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658"
46514748

4749+
regenerator-runtime@^0.11.0:
4750+
version "0.11.0"
4751+
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1"
4752+
46524753
46534754
version "0.9.11"
46544755
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283"
@@ -4657,6 +4758,14 @@ [email protected]:
46574758
babel-types "^6.19.0"
46584759
private "^0.1.6"
46594760

4761+
regenerator-transform@^0.10.0:
4762+
version "0.10.1"
4763+
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd"
4764+
dependencies:
4765+
babel-runtime "^6.18.0"
4766+
babel-types "^6.19.0"
4767+
private "^0.1.6"
4768+
46604769
regex-cache@^0.4.2:
46614770
version "0.4.3"
46624771
resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145"
@@ -5395,7 +5504,7 @@ to-arraybuffer@^1.0.0:
53955504
version "1.0.1"
53965505
resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
53975506

5398-
to-fast-properties@^1.0.1:
5507+
to-fast-properties@^1.0.1, to-fast-properties@^1.0.3:
53995508
version "1.0.3"
54005509
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
54015510

0 commit comments

Comments
 (0)