@modern-js/repo-generator 1.0.4 → 1.1.3-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/js/node/main.js +795 -476
  2. package/package.json +10 -19
@@ -1,7 +1,7 @@
1
1
  /******/ (() => { // webpackBootstrap
2
2
  /******/ var __webpack_modules__ = ({
3
3
 
4
- /***/ 90006:
4
+ /***/ 67977:
5
5
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
6
6
 
7
7
  "use strict";
@@ -12,13 +12,13 @@ Object.defineProperty(exports, "__esModule", ({
12
12
  }));
13
13
  exports.listNode = void 0;
14
14
 
15
- var _easyFormCli = __webpack_require__(48979);
15
+ var _easyFormCli = __webpack_require__(24191);
16
16
 
17
- var _inquirerTypes = __webpack_require__(22183);
17
+ var _inquirerTypes = __webpack_require__(46133);
18
18
 
19
- var _constant = __webpack_require__(32060);
19
+ var _constant = __webpack_require__(79503);
20
20
 
21
- const registerJupiterListPrompt = inquirer => {
21
+ const registerListPrompt = inquirer => {
22
22
  try {
23
23
  inquirer.registerPrompt(_constant.CLI_TYPE.LISTNODE, _inquirerTypes.List);
24
24
  } catch (error) {}
@@ -33,7 +33,7 @@ const listNode = options => {
33
33
  promptModule,
34
34
  childNodes
35
35
  } = options;
36
- registerJupiterListPrompt(inquirer);
36
+ registerListPrompt(inquirer);
37
37
  return async answers => {
38
38
  const listHandler = (0, _easyFormCli.toPromiseQuestionHandler)({
39
39
  schema,
@@ -100,7 +100,7 @@ exports.listNode = listNode;
100
100
 
101
101
  /***/ }),
102
102
 
103
- /***/ 32060:
103
+ /***/ 79503:
104
104
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
105
105
 
106
106
  "use strict";
@@ -111,7 +111,7 @@ Object.defineProperty(exports, "__esModule", ({
111
111
  }));
112
112
  exports.CLI_TYPE = void 0;
113
113
 
114
- var _easyFormCli = __webpack_require__(48979);
114
+ var _easyFormCli = __webpack_require__(24191);
115
115
 
116
116
  function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
117
117
 
@@ -125,7 +125,7 @@ exports.CLI_TYPE = CLI_TYPE;
125
125
 
126
126
  /***/ }),
127
127
 
128
- /***/ 61609:
128
+ /***/ 74370:
129
129
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
130
130
 
131
131
  "use strict";
@@ -135,7 +135,7 @@ Object.defineProperty(exports, "__esModule", ({
135
135
  value: true
136
136
  }));
137
137
 
138
- var _ListNode = __webpack_require__(90006);
138
+ var _ListNode = __webpack_require__(67977);
139
139
 
140
140
  Object.keys(_ListNode).forEach(function (key) {
141
141
  if (key === "default" || key === "__esModule") return;
@@ -150,7 +150,7 @@ Object.keys(_ListNode).forEach(function (key) {
150
150
 
151
151
  /***/ }),
152
152
 
153
- /***/ 72714:
153
+ /***/ 3437:
154
154
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
155
155
 
156
156
  "use strict";
@@ -183,19 +183,19 @@ var _execa = _interopRequireDefault(__webpack_require__(16228));
183
183
 
184
184
  var _commentJson = __webpack_require__(66623);
185
185
 
186
- var _codesmithApiNpm = __webpack_require__(56332);
186
+ var _codesmithApiNpm = __webpack_require__(90423);
187
187
 
188
- var _codesmithApiGit = __webpack_require__(94959);
188
+ var _codesmithApiGit = __webpack_require__(64179);
189
189
 
190
- var _codesmithApiHandlebars = __webpack_require__(84266);
190
+ var _codesmithApiHandlebars = __webpack_require__(1849);
191
191
 
192
- var _easyFormCli = __webpack_require__(48979);
192
+ var _easyFormCli = __webpack_require__(24191);
193
193
 
194
- var _transformSchema = __webpack_require__(69622);
194
+ var _transformSchema = __webpack_require__(45921);
195
195
 
196
- var handlers = _interopRequireWildcard(__webpack_require__(61609));
196
+ var handlers = _interopRequireWildcard(__webpack_require__(74370));
197
197
 
198
- var _locale = __webpack_require__(54945);
198
+ var _locale = __webpack_require__(21557);
199
199
 
200
200
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
201
201
 
@@ -222,7 +222,7 @@ class AppAPI {
222
222
  this.generatorCore = generatorCore;
223
223
  this.generatorContext = generatorContext;
224
224
  this.npmApi = new _codesmithApiNpm.NpmAPI(generatorCore);
225
- this.gitApi = new _codesmithApiGit.GitAPI(generatorCore);
225
+ this.gitApi = new _codesmithApiGit.GitAPI(generatorCore, generatorContext);
226
226
  this.handlebarsAPI = new _codesmithApiHandlebars.HandlebarsAPI(this.generatorCore);
227
227
  }
228
228
 
@@ -409,7 +409,7 @@ exports.AppAPI = AppAPI;
409
409
 
410
410
  /***/ }),
411
411
 
412
- /***/ 33113:
412
+ /***/ 31799:
413
413
  /***/ ((__unused_webpack_module, exports) => {
414
414
 
415
415
  "use strict";
@@ -448,7 +448,7 @@ exports.EN_LOCALE = EN_LOCALE;
448
448
 
449
449
  /***/ }),
450
450
 
451
- /***/ 54945:
451
+ /***/ 21557:
452
452
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
453
453
 
454
454
  "use strict";
@@ -465,11 +465,11 @@ Object.defineProperty(exports, "I18n", ({
465
465
  }));
466
466
  exports.localeKeys = exports.i18n = void 0;
467
467
 
468
- var _pluginI18n = __webpack_require__(94093);
468
+ var _pluginI18n = __webpack_require__(98368);
469
469
 
470
- var _zh = __webpack_require__(13100);
470
+ var _zh = __webpack_require__(88218);
471
471
 
472
- var _en = __webpack_require__(33113);
472
+ var _en = __webpack_require__(31799);
473
473
 
474
474
  const i18n = new _pluginI18n.I18n();
475
475
  exports.i18n = i18n;
@@ -481,7 +481,7 @@ exports.localeKeys = localeKeys;
481
481
 
482
482
  /***/ }),
483
483
 
484
- /***/ 13100:
484
+ /***/ 88218:
485
485
  /***/ ((__unused_webpack_module, exports) => {
486
486
 
487
487
  "use strict";
@@ -520,7 +520,7 @@ exports.ZH_LOCALE = ZH_LOCALE;
520
520
 
521
521
  /***/ }),
522
522
 
523
- /***/ 69622:
523
+ /***/ 45921:
524
524
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
525
525
 
526
526
  "use strict";
@@ -533,7 +533,7 @@ exports.transformSchema = transformSchema;
533
533
 
534
534
  var _isUndefined2 = _interopRequireDefault(__webpack_require__(88066));
535
535
 
536
- var _easyFormCli = __webpack_require__(48979);
536
+ var _easyFormCli = __webpack_require__(24191);
537
537
 
538
538
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
539
539
 
@@ -580,7 +580,7 @@ function transformSchema(schema, configValue = {}, validateMap = {}) {
580
580
 
581
581
  /***/ }),
582
582
 
583
- /***/ 94959:
583
+ /***/ 64179:
584
584
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
585
585
 
586
586
  "use strict";
@@ -591,12 +591,14 @@ Object.defineProperty(exports, "__esModule", ({
591
591
  }));
592
592
  exports.GitAPI = void 0;
593
593
 
594
- var _utils = __webpack_require__(74757);
594
+ var _utils = __webpack_require__(6818);
595
595
 
596
596
  class GitAPI {
597
- constructor(generatorCore) {
597
+ constructor(generatorCore, generatorContext) {
598
598
  this.generatorCore = void 0;
599
+ this.generatorContext = void 0;
599
600
  this.generatorCore = generatorCore;
601
+ this.generatorContext = generatorContext;
600
602
  }
601
603
 
602
604
  async isInGitRepo(cwd = this.generatorCore.outputPath) {
@@ -624,7 +626,16 @@ class GitAPI {
624
626
  }
625
627
 
626
628
  try {
627
- await (0, _utils.initGitRepo)(cwd);
629
+ const {
630
+ config: {
631
+ defaultBranch = 'master'
632
+ }
633
+ } = this.generatorContext || {
634
+ config: {
635
+ defaultBranch: 'master'
636
+ }
637
+ };
638
+ await (0, _utils.initGitRepo)(cwd, defaultBranch);
628
639
  } catch (e) {
629
640
  this.generatorCore.logger.debug('[GitAPI.error]:', e);
630
641
  throw e;
@@ -653,7 +664,7 @@ exports.GitAPI = GitAPI;
653
664
 
654
665
  /***/ }),
655
666
 
656
- /***/ 74757:
667
+ /***/ 6818:
657
668
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
658
669
 
659
670
  "use strict";
@@ -695,11 +706,24 @@ async function isInGitRepo(cwd) {
695
706
  }
696
707
  }
697
708
 
698
- async function initGitRepo(cwd) {
709
+ async function initGitRepo(cwd, defaultBranch) {
699
710
  await (0, _execa.default)('git', ['init'], {
700
711
  env: process.env,
701
712
  cwd
702
713
  });
714
+ const {
715
+ stdout
716
+ } = await (0, _execa.default)('git', ['symbolic-ref', '--short', 'HEAD'], {
717
+ env: process.env,
718
+ cwd
719
+ });
720
+
721
+ if (stdout !== defaultBranch) {
722
+ await (0, _execa.default)('git', ['checkout', '-b', defaultBranch], {
723
+ env: process.env,
724
+ cwd
725
+ });
726
+ }
703
727
  }
704
728
 
705
729
  async function gitAdd(cwd) {
@@ -718,7 +742,7 @@ async function gitCommit(cwd, commitMessage) {
718
742
 
719
743
  /***/ }),
720
744
 
721
- /***/ 84266:
745
+ /***/ 1849:
722
746
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
723
747
 
724
748
  "use strict";
@@ -735,9 +759,9 @@ Object.defineProperty(exports, "renderString", ({
735
759
  }
736
760
  }));
737
761
 
738
- var _codesmith = __webpack_require__(48943);
762
+ var _codesmith = __webpack_require__(54345);
739
763
 
740
- var _utils = __webpack_require__(35225);
764
+ var _utils = __webpack_require__(40682);
741
765
 
742
766
  class HandlebarsAPI {
743
767
  constructor(generatorCore, registers) {
@@ -781,7 +805,7 @@ exports.HandlebarsAPI = HandlebarsAPI;
781
805
 
782
806
  /***/ }),
783
807
 
784
- /***/ 35225:
808
+ /***/ 40682:
785
809
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
786
810
 
787
811
  "use strict";
@@ -797,11 +821,11 @@ Object.defineProperty(exports, "renderString", ({
797
821
  }
798
822
  }));
799
823
 
800
- var _renderString = __webpack_require__(81517);
824
+ var _renderString = __webpack_require__(60311);
801
825
 
802
826
  /***/ }),
803
827
 
804
- /***/ 81517:
828
+ /***/ 60311:
805
829
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
806
830
 
807
831
  "use strict";
@@ -834,7 +858,7 @@ function renderString(template, fullData, registers) {
834
858
 
835
859
  /***/ }),
836
860
 
837
- /***/ 56332:
861
+ /***/ 90423:
838
862
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
839
863
 
840
864
  "use strict";
@@ -848,7 +872,7 @@ var _exportNames = {
848
872
  };
849
873
  exports.NpmAPI = void 0;
850
874
 
851
- var _utils = __webpack_require__(15714);
875
+ var _utils = __webpack_require__(63716);
852
876
 
853
877
  Object.keys(_utils).forEach(function (key) {
854
878
  if (key === "default" || key === "__esModule") return;
@@ -886,7 +910,7 @@ exports.NpmAPI = NpmAPI;
886
910
 
887
911
  /***/ }),
888
912
 
889
- /***/ 18614:
913
+ /***/ 45033:
890
914
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
891
915
 
892
916
  "use strict";
@@ -951,7 +975,7 @@ async function canUsePnpm() {
951
975
 
952
976
  /***/ }),
953
977
 
954
- /***/ 15714:
978
+ /***/ 63716:
955
979
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
956
980
 
957
981
  "use strict";
@@ -1003,13 +1027,13 @@ Object.defineProperty(exports, "yarnInstall", ({
1003
1027
  }
1004
1028
  }));
1005
1029
 
1006
- var _env = __webpack_require__(18614);
1030
+ var _env = __webpack_require__(45033);
1007
1031
 
1008
- var _install = __webpack_require__(95206);
1032
+ var _install = __webpack_require__(6285);
1009
1033
 
1010
1034
  /***/ }),
1011
1035
 
1012
- /***/ 95206:
1036
+ /***/ 6285:
1013
1037
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1014
1038
 
1015
1039
  "use strict";
@@ -1025,7 +1049,7 @@ exports.yarnInstall = yarnInstall;
1025
1049
 
1026
1050
  var _execa = _interopRequireDefault(__webpack_require__(16228));
1027
1051
 
1028
- var _env = __webpack_require__(18614);
1052
+ var _env = __webpack_require__(45033);
1029
1053
 
1030
1054
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
1031
1055
 
@@ -1103,7 +1127,7 @@ async function pnpmInstall(cwd, registryUrl) {
1103
1127
 
1104
1128
  /***/ }),
1105
1129
 
1106
- /***/ 38880:
1130
+ /***/ 5579:
1107
1131
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1108
1132
 
1109
1133
  "use strict";
@@ -1116,15 +1140,15 @@ exports.CodeSmith = void 0;
1116
1140
 
1117
1141
  var _path = _interopRequireDefault(__webpack_require__(71017));
1118
1142
 
1119
- var _generator = __webpack_require__(76195);
1143
+ var _generator = __webpack_require__(50891);
1120
1144
 
1121
- var _logger = __webpack_require__(25784);
1145
+ var _logger = __webpack_require__(73842);
1122
1146
 
1123
- var _constants = __webpack_require__(91065);
1147
+ var _constants = __webpack_require__(68725);
1124
1148
 
1125
- var _materials = __webpack_require__(73038);
1149
+ var _materials = __webpack_require__(3797);
1126
1150
 
1127
- var _FsMaterial = __webpack_require__(87657);
1151
+ var _FsMaterial = __webpack_require__(78741);
1128
1152
 
1129
1153
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
1130
1154
 
@@ -1183,7 +1207,7 @@ exports.CodeSmith = CodeSmith;
1183
1207
 
1184
1208
  /***/ }),
1185
1209
 
1186
- /***/ 66478:
1210
+ /***/ 84795:
1187
1211
  /***/ ((__unused_webpack_module, exports) => {
1188
1212
 
1189
1213
  "use strict";
@@ -1200,7 +1224,7 @@ exports.CATCHE_VALIDITY_PREIOD = CATCHE_VALIDITY_PREIOD;
1200
1224
 
1201
1225
  /***/ }),
1202
1226
 
1203
- /***/ 76195:
1227
+ /***/ 50891:
1204
1228
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1205
1229
 
1206
1230
  "use strict";
@@ -1221,11 +1245,11 @@ var _chalk = _interopRequireDefault(__webpack_require__(9834));
1221
1245
 
1222
1246
  var _fsExtra = _interopRequireDefault(__webpack_require__(96576));
1223
1247
 
1224
- var _FsMaterial = __webpack_require__(87657);
1248
+ var _FsMaterial = __webpack_require__(78741);
1225
1249
 
1226
- var _nodeRequire = __webpack_require__(20202);
1250
+ var _nodeRequire = __webpack_require__(18447);
1227
1251
 
1228
- var _getGeneratorDir = __webpack_require__(70869);
1252
+ var _getGeneratorDir = __webpack_require__(85282);
1229
1253
 
1230
1254
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
1231
1255
 
@@ -1456,7 +1480,7 @@ exports.GeneratorCore = GeneratorCore;
1456
1480
 
1457
1481
  /***/ }),
1458
1482
 
1459
- /***/ 48943:
1483
+ /***/ 54345:
1460
1484
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1461
1485
 
1462
1486
  "use strict";
@@ -1465,6 +1489,17 @@ exports.GeneratorCore = GeneratorCore;
1465
1489
  Object.defineProperty(exports, "__esModule", ({
1466
1490
  value: true
1467
1491
  }));
1492
+ var _exportNames = {
1493
+ LoggerLevel: true,
1494
+ LevelPriority: true,
1495
+ Logger: true,
1496
+ CodeSmith: true,
1497
+ GeneratorCore: true,
1498
+ MaterialsManager: true,
1499
+ FsMaterial: true,
1500
+ FsResource: true,
1501
+ FS_RESOURCE: true
1502
+ };
1468
1503
  Object.defineProperty(exports, "CodeSmith", ({
1469
1504
  enumerable: true,
1470
1505
  get: function () {
@@ -1520,23 +1555,37 @@ Object.defineProperty(exports, "MaterialsManager", ({
1520
1555
  }
1521
1556
  }));
1522
1557
 
1523
- var _constants = __webpack_require__(91065);
1558
+ var _constants = __webpack_require__(68725);
1559
+
1560
+ var _logger = __webpack_require__(73842);
1524
1561
 
1525
- var _logger = __webpack_require__(25784);
1562
+ var _codesmith = __webpack_require__(5579);
1526
1563
 
1527
- var _codesmith = __webpack_require__(38880);
1564
+ var _generator = __webpack_require__(50891);
1528
1565
 
1529
- var _generator = __webpack_require__(76195);
1566
+ var _materials = __webpack_require__(3797);
1530
1567
 
1531
- var _materials = __webpack_require__(73038);
1568
+ var _FsMaterial = __webpack_require__(78741);
1532
1569
 
1533
- var _FsMaterial = __webpack_require__(87657);
1570
+ var _FsResource = __webpack_require__(49448);
1534
1571
 
1535
- var _FsResource = __webpack_require__(19957);
1572
+ var _utils = __webpack_require__(27351);
1573
+
1574
+ Object.keys(_utils).forEach(function (key) {
1575
+ if (key === "default" || key === "__esModule") return;
1576
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
1577
+ if (key in exports && exports[key] === _utils[key]) return;
1578
+ Object.defineProperty(exports, key, {
1579
+ enumerable: true,
1580
+ get: function () {
1581
+ return _utils[key];
1582
+ }
1583
+ });
1584
+ });
1536
1585
 
1537
1586
  /***/ }),
1538
1587
 
1539
- /***/ 91065:
1588
+ /***/ 68725:
1540
1589
  /***/ ((__unused_webpack_module, exports) => {
1541
1590
 
1542
1591
  "use strict";
@@ -1564,7 +1613,7 @@ exports.LevelPriority = LevelPriority;
1564
1613
 
1565
1614
  /***/ }),
1566
1615
 
1567
- /***/ 25784:
1616
+ /***/ 73842:
1568
1617
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1569
1618
 
1570
1619
  "use strict";
@@ -1577,7 +1626,7 @@ exports.Logger = void 0;
1577
1626
 
1578
1627
  var _chalk = _interopRequireDefault(__webpack_require__(9834));
1579
1628
 
1580
- var _constants = __webpack_require__(91065);
1629
+ var _constants = __webpack_require__(68725);
1581
1630
 
1582
1631
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
1583
1632
 
@@ -1652,7 +1701,7 @@ exports.Logger = Logger;
1652
1701
 
1653
1702
  /***/ }),
1654
1703
 
1655
- /***/ 87657:
1704
+ /***/ 78741:
1656
1705
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1657
1706
 
1658
1707
  "use strict";
@@ -1667,7 +1716,7 @@ var _path = _interopRequireDefault(__webpack_require__(71017));
1667
1716
 
1668
1717
  var _globPromise = _interopRequireDefault(__webpack_require__(39646));
1669
1718
 
1670
- var _FsResource = __webpack_require__(19957);
1719
+ var _FsResource = __webpack_require__(49448);
1671
1720
 
1672
1721
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
1673
1722
 
@@ -1700,7 +1749,7 @@ exports.FsMaterial = FsMaterial;
1700
1749
 
1701
1750
  /***/ }),
1702
1751
 
1703
- /***/ 19957:
1752
+ /***/ 49448:
1704
1753
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1705
1754
 
1706
1755
  "use strict";
@@ -1715,7 +1764,7 @@ var _path = _interopRequireDefault(__webpack_require__(71017));
1715
1764
 
1716
1765
  var _fsExtra = _interopRequireDefault(__webpack_require__(96576));
1717
1766
 
1718
- var _constants = __webpack_require__(48325);
1767
+ var _constants = __webpack_require__(70516);
1719
1768
 
1720
1769
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
1721
1770
 
@@ -1753,7 +1802,7 @@ exports.FsResource = FsResource;
1753
1802
 
1754
1803
  /***/ }),
1755
1804
 
1756
- /***/ 48325:
1805
+ /***/ 70516:
1757
1806
  /***/ ((__unused_webpack_module, exports) => {
1758
1807
 
1759
1808
  "use strict";
@@ -1768,7 +1817,7 @@ exports.IMAGE_EXT_LIST = IMAGE_EXT_LIST;
1768
1817
 
1769
1818
  /***/ }),
1770
1819
 
1771
- /***/ 73038:
1820
+ /***/ 3797:
1772
1821
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1773
1822
 
1774
1823
  "use strict";
@@ -1781,9 +1830,9 @@ exports.MaterialsManager = void 0;
1781
1830
 
1782
1831
  var _path = _interopRequireDefault(__webpack_require__(71017));
1783
1832
 
1784
- var _FsMaterial = __webpack_require__(87657);
1833
+ var _FsMaterial = __webpack_require__(78741);
1785
1834
 
1786
- var _utils = __webpack_require__(41087);
1835
+ var _utils = __webpack_require__(27351);
1787
1836
 
1788
1837
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
1789
1838
 
@@ -1828,7 +1877,7 @@ exports.MaterialsManager = MaterialsManager;
1828
1877
 
1829
1878
  /***/ }),
1830
1879
 
1831
- /***/ 97838:
1880
+ /***/ 81337:
1832
1881
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1833
1882
 
1834
1883
  "use strict";
@@ -1847,15 +1896,15 @@ var _axios = _interopRequireDefault(__webpack_require__(45114));
1847
1896
 
1848
1897
  var _tar = _interopRequireDefault(__webpack_require__(74634));
1849
1898
 
1850
- var _getNpmTarballUrl = __webpack_require__(66038);
1899
+ var _getNpmTarballUrl = __webpack_require__(27272);
1851
1900
 
1852
- var _getNpmVersion = __webpack_require__(90880);
1901
+ var _getNpmVersion = __webpack_require__(38016);
1853
1902
 
1854
- var _fsExists = __webpack_require__(83821);
1903
+ var _fsExists = __webpack_require__(62279);
1855
1904
 
1856
- var _packageManager = __webpack_require__(89407);
1905
+ var _packageManager = __webpack_require__(14888);
1857
1906
 
1858
- var _constants = __webpack_require__(66478);
1907
+ var _constants = __webpack_require__(84795);
1859
1908
 
1860
1909
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
1861
1910
 
@@ -1975,7 +2024,7 @@ async function downloadPackage(pkgName, pkgVersion = 'latest', options = {}) {
1975
2024
 
1976
2025
  /***/ }),
1977
2026
 
1978
- /***/ 83821:
2027
+ /***/ 62279:
1979
2028
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
1980
2029
 
1981
2030
  "use strict";
@@ -2006,7 +2055,7 @@ async function fsExists(path) {
2006
2055
 
2007
2056
  /***/ }),
2008
2057
 
2009
- /***/ 70869:
2058
+ /***/ 85282:
2010
2059
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2011
2060
 
2012
2061
  "use strict";
@@ -2021,7 +2070,7 @@ var _path = _interopRequireDefault(__webpack_require__(71017));
2021
2070
 
2022
2071
  var _fsExtra = _interopRequireDefault(__webpack_require__(96576));
2023
2072
 
2024
- var _fsExists = __webpack_require__(83821);
2073
+ var _fsExists = __webpack_require__(62279);
2025
2074
 
2026
2075
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
2027
2076
 
@@ -2051,7 +2100,7 @@ async function getGeneratorDir(generator) {
2051
2100
 
2052
2101
  /***/ }),
2053
2102
 
2054
- /***/ 66038:
2103
+ /***/ 27272:
2055
2104
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2056
2105
 
2057
2106
  "use strict";
@@ -2064,9 +2113,9 @@ exports.getNpmTarballUrl = getNpmTarballUrl;
2064
2113
 
2065
2114
  var _packageJson = _interopRequireDefault(__webpack_require__(27499));
2066
2115
 
2067
- var _timeoutPromise = __webpack_require__(37165);
2116
+ var _timeoutPromise = __webpack_require__(80767);
2068
2117
 
2069
- var _constants = __webpack_require__(66478);
2118
+ var _constants = __webpack_require__(84795);
2070
2119
 
2071
2120
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
2072
2121
 
@@ -2103,7 +2152,7 @@ async function getNpmTarballUrl(pkgName, pkgVersion, options) {
2103
2152
 
2104
2153
  /***/ }),
2105
2154
 
2106
- /***/ 90880:
2155
+ /***/ 38016:
2107
2156
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2108
2157
 
2109
2158
  "use strict";
@@ -2116,9 +2165,9 @@ exports.getNpmVersion = getNpmVersion;
2116
2165
 
2117
2166
  var _packageJson = _interopRequireDefault(__webpack_require__(27499));
2118
2167
 
2119
- var _timeoutPromise = __webpack_require__(37165);
2168
+ var _timeoutPromise = __webpack_require__(80767);
2120
2169
 
2121
- var _constants = __webpack_require__(66478);
2170
+ var _constants = __webpack_require__(84795);
2122
2171
 
2123
2172
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
2124
2173
 
@@ -2137,7 +2186,7 @@ async function getNpmVersion(packageName, options) {
2137
2186
 
2138
2187
  /***/ }),
2139
2188
 
2140
- /***/ 69378:
2189
+ /***/ 20892:
2141
2190
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2142
2191
 
2143
2192
  "use strict";
@@ -2186,7 +2235,7 @@ function getPackageInfo(packageName) {
2186
2235
 
2187
2236
  /***/ }),
2188
2237
 
2189
- /***/ 41087:
2238
+ /***/ 27351:
2190
2239
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2191
2240
 
2192
2241
  "use strict";
@@ -2256,25 +2305,25 @@ Object.defineProperty(exports, "timeoutPromise", ({
2256
2305
  }
2257
2306
  }));
2258
2307
 
2259
- var _fsExists = __webpack_require__(83821);
2308
+ var _fsExists = __webpack_require__(62279);
2260
2309
 
2261
- var _nodeRequire = __webpack_require__(20202);
2310
+ var _nodeRequire = __webpack_require__(18447);
2262
2311
 
2263
- var _packageManager = __webpack_require__(89407);
2312
+ var _packageManager = __webpack_require__(14888);
2264
2313
 
2265
- var _timeoutPromise = __webpack_require__(37165);
2314
+ var _timeoutPromise = __webpack_require__(80767);
2266
2315
 
2267
- var _downloadPackage = __webpack_require__(97838);
2316
+ var _downloadPackage = __webpack_require__(81337);
2268
2317
 
2269
- var _getNpmTarballUrl = __webpack_require__(66038);
2318
+ var _getNpmTarballUrl = __webpack_require__(27272);
2270
2319
 
2271
- var _getNpmVersion = __webpack_require__(90880);
2320
+ var _getNpmVersion = __webpack_require__(38016);
2272
2321
 
2273
- var _getPackageInfo = __webpack_require__(69378);
2322
+ var _getPackageInfo = __webpack_require__(20892);
2274
2323
 
2275
2324
  /***/ }),
2276
2325
 
2277
- /***/ 20202:
2326
+ /***/ 18447:
2278
2327
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2279
2328
 
2280
2329
  "use strict";
@@ -2300,7 +2349,7 @@ const nodeRequire = path => {
2300
2349
 
2301
2350
  return module;
2302
2351
  } catch (error) {
2303
- const module = __webpack_require__(49208)(path);
2352
+ const module = __webpack_require__(15525)(path);
2304
2353
 
2305
2354
  if (module !== null && module !== void 0 && module.default) {
2306
2355
  return module.default;
@@ -2314,7 +2363,7 @@ exports.nodeRequire = nodeRequire;
2314
2363
 
2315
2364
  /***/ }),
2316
2365
 
2317
- /***/ 89407:
2366
+ /***/ 14888:
2318
2367
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2319
2368
 
2320
2369
  "use strict";
@@ -2409,7 +2458,7 @@ async function runInstall(targetDir, registryUrl) {
2409
2458
 
2410
2459
  /***/ }),
2411
2460
 
2412
- /***/ 37165:
2461
+ /***/ 80767:
2413
2462
  /***/ ((__unused_webpack_module, exports) => {
2414
2463
 
2415
2464
  "use strict";
@@ -2444,7 +2493,7 @@ async function timeoutPromise(promise, ms, reason = 'Operation') {
2444
2493
 
2445
2494
  /***/ }),
2446
2495
 
2447
- /***/ 49208:
2496
+ /***/ 15525:
2448
2497
  /***/ ((module) => {
2449
2498
 
2450
2499
  function webpackEmptyContext(req) {
@@ -2454,12 +2503,12 @@ function webpackEmptyContext(req) {
2454
2503
  }
2455
2504
  webpackEmptyContext.keys = () => ([]);
2456
2505
  webpackEmptyContext.resolve = webpackEmptyContext;
2457
- webpackEmptyContext.id = 49208;
2506
+ webpackEmptyContext.id = 15525;
2458
2507
  module.exports = webpackEmptyContext;
2459
2508
 
2460
2509
  /***/ }),
2461
2510
 
2462
- /***/ 88424:
2511
+ /***/ 35516:
2463
2512
  /***/ ((__unused_webpack_module, exports) => {
2464
2513
 
2465
2514
  "use strict";
@@ -2471,14 +2520,14 @@ Object.defineProperty(exports, "__esModule", ({
2471
2520
 
2472
2521
  /***/ }),
2473
2522
 
2474
- /***/ 45639:
2523
+ /***/ 32661:
2475
2524
  /***/ (() => {
2476
2525
 
2477
2526
 
2478
2527
 
2479
2528
  /***/ }),
2480
2529
 
2481
- /***/ 99490:
2530
+ /***/ 27969:
2482
2531
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2483
2532
 
2484
2533
  "use strict";
@@ -2489,9 +2538,9 @@ Object.defineProperty(exports, "__esModule", ({
2489
2538
  }));
2490
2539
  exports.BaseCliReader = void 0;
2491
2540
 
2492
- var _easyFormCore = __webpack_require__(94144);
2541
+ var _easyFormCore = __webpack_require__(67566);
2493
2542
 
2494
- var _constant = __webpack_require__(25260);
2543
+ var _constant = __webpack_require__(56124);
2495
2544
 
2496
2545
  function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
2497
2546
 
@@ -2677,7 +2726,7 @@ exports.BaseCliReader = BaseCliReader;
2677
2726
 
2678
2727
  /***/ }),
2679
2728
 
2680
- /***/ 84071:
2729
+ /***/ 90444:
2681
2730
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2682
2731
 
2683
2732
  "use strict";
@@ -2688,9 +2737,9 @@ Object.defineProperty(exports, "__esModule", ({
2688
2737
  }));
2689
2738
  exports.checkboxNode = void 0;
2690
2739
 
2691
- __webpack_require__(45639);
2740
+ __webpack_require__(32661);
2692
2741
 
2693
- var _utils = __webpack_require__(43711);
2742
+ var _utils = __webpack_require__(32300);
2694
2743
 
2695
2744
  const checkboxNode = options => {
2696
2745
  const {
@@ -2726,7 +2775,7 @@ exports.checkboxNode = checkboxNode;
2726
2775
 
2727
2776
  /***/ }),
2728
2777
 
2729
- /***/ 25560:
2778
+ /***/ 15352:
2730
2779
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2731
2780
 
2732
2781
  "use strict";
@@ -2737,9 +2786,9 @@ Object.defineProperty(exports, "__esModule", ({
2737
2786
  }));
2738
2787
  exports.childNode = void 0;
2739
2788
 
2740
- __webpack_require__(45639);
2789
+ __webpack_require__(32661);
2741
2790
 
2742
- var _utils = __webpack_require__(43711);
2791
+ var _utils = __webpack_require__(32300);
2743
2792
 
2744
2793
  const childNode = options => {
2745
2794
  const {
@@ -2765,7 +2814,7 @@ exports.childNode = childNode;
2765
2814
 
2766
2815
  /***/ }),
2767
2816
 
2768
- /***/ 65621:
2817
+ /***/ 79470:
2769
2818
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2770
2819
 
2771
2820
  "use strict";
@@ -2776,9 +2825,9 @@ Object.defineProperty(exports, "__esModule", ({
2776
2825
  }));
2777
2826
  exports.formNode = void 0;
2778
2827
 
2779
- __webpack_require__(45639);
2828
+ __webpack_require__(32661);
2780
2829
 
2781
- var _utils = __webpack_require__(43711);
2830
+ var _utils = __webpack_require__(32300);
2782
2831
 
2783
2832
  const formNode = options => {
2784
2833
  const {
@@ -2791,7 +2840,7 @@ exports.formNode = formNode;
2791
2840
 
2792
2841
  /***/ }),
2793
2842
 
2794
- /***/ 10860:
2843
+ /***/ 47909:
2795
2844
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2796
2845
 
2797
2846
  "use strict";
@@ -2801,7 +2850,7 @@ Object.defineProperty(exports, "__esModule", ({
2801
2850
  value: true
2802
2851
  }));
2803
2852
 
2804
- var _checkboxNode = __webpack_require__(84071);
2853
+ var _checkboxNode = __webpack_require__(90444);
2805
2854
 
2806
2855
  Object.keys(_checkboxNode).forEach(function (key) {
2807
2856
  if (key === "default" || key === "__esModule") return;
@@ -2814,7 +2863,7 @@ Object.keys(_checkboxNode).forEach(function (key) {
2814
2863
  });
2815
2864
  });
2816
2865
 
2817
- var _rootNode = __webpack_require__(56075);
2866
+ var _rootNode = __webpack_require__(75634);
2818
2867
 
2819
2868
  Object.keys(_rootNode).forEach(function (key) {
2820
2869
  if (key === "default" || key === "__esModule") return;
@@ -2827,7 +2876,7 @@ Object.keys(_rootNode).forEach(function (key) {
2827
2876
  });
2828
2877
  });
2829
2878
 
2830
- var _childNode = __webpack_require__(25560);
2879
+ var _childNode = __webpack_require__(15352);
2831
2880
 
2832
2881
  Object.keys(_childNode).forEach(function (key) {
2833
2882
  if (key === "default" || key === "__esModule") return;
@@ -2840,7 +2889,7 @@ Object.keys(_childNode).forEach(function (key) {
2840
2889
  });
2841
2890
  });
2842
2891
 
2843
- var _formNode = __webpack_require__(65621);
2892
+ var _formNode = __webpack_require__(79470);
2844
2893
 
2845
2894
  Object.keys(_formNode).forEach(function (key) {
2846
2895
  if (key === "default" || key === "__esModule") return;
@@ -2853,7 +2902,7 @@ Object.keys(_formNode).forEach(function (key) {
2853
2902
  });
2854
2903
  });
2855
2904
 
2856
- var _inputNode = __webpack_require__(49242);
2905
+ var _inputNode = __webpack_require__(78734);
2857
2906
 
2858
2907
  Object.keys(_inputNode).forEach(function (key) {
2859
2908
  if (key === "default" || key === "__esModule") return;
@@ -2866,7 +2915,7 @@ Object.keys(_inputNode).forEach(function (key) {
2866
2915
  });
2867
2916
  });
2868
2917
 
2869
- var _listNode = __webpack_require__(61505);
2918
+ var _listNode = __webpack_require__(4533);
2870
2919
 
2871
2920
  Object.keys(_listNode).forEach(function (key) {
2872
2921
  if (key === "default" || key === "__esModule") return;
@@ -2879,7 +2928,7 @@ Object.keys(_listNode).forEach(function (key) {
2879
2928
  });
2880
2929
  });
2881
2930
 
2882
- var _numberNode = __webpack_require__(98595);
2931
+ var _numberNode = __webpack_require__(14247);
2883
2932
 
2884
2933
  Object.keys(_numberNode).forEach(function (key) {
2885
2934
  if (key === "default" || key === "__esModule") return;
@@ -2894,7 +2943,7 @@ Object.keys(_numberNode).forEach(function (key) {
2894
2943
 
2895
2944
  /***/ }),
2896
2945
 
2897
- /***/ 49242:
2946
+ /***/ 78734:
2898
2947
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2899
2948
 
2900
2949
  "use strict";
@@ -2905,9 +2954,9 @@ Object.defineProperty(exports, "__esModule", ({
2905
2954
  }));
2906
2955
  exports.inputNode = void 0;
2907
2956
 
2908
- __webpack_require__(45639);
2957
+ __webpack_require__(32661);
2909
2958
 
2910
- var _utils = __webpack_require__(43711);
2959
+ var _utils = __webpack_require__(32300);
2911
2960
 
2912
2961
  const inputNode = options => {
2913
2962
  const {
@@ -2931,7 +2980,7 @@ exports.inputNode = inputNode;
2931
2980
 
2932
2981
  /***/ }),
2933
2982
 
2934
- /***/ 61505:
2983
+ /***/ 4533:
2935
2984
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2936
2985
 
2937
2986
  "use strict";
@@ -2942,9 +2991,9 @@ Object.defineProperty(exports, "__esModule", ({
2942
2991
  }));
2943
2992
  exports.listNode = void 0;
2944
2993
 
2945
- __webpack_require__(45639);
2994
+ __webpack_require__(32661);
2946
2995
 
2947
- var _utils = __webpack_require__(43711);
2996
+ var _utils = __webpack_require__(32300);
2948
2997
 
2949
2998
  const listNode = options => {
2950
2999
  const {
@@ -2980,7 +3029,7 @@ exports.listNode = listNode;
2980
3029
 
2981
3030
  /***/ }),
2982
3031
 
2983
- /***/ 98595:
3032
+ /***/ 14247:
2984
3033
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2985
3034
 
2986
3035
  "use strict";
@@ -2991,9 +3040,9 @@ Object.defineProperty(exports, "__esModule", ({
2991
3040
  }));
2992
3041
  exports.numberNode = void 0;
2993
3042
 
2994
- __webpack_require__(45639);
3043
+ __webpack_require__(32661);
2995
3044
 
2996
- var _utils = __webpack_require__(43711);
3045
+ var _utils = __webpack_require__(32300);
2997
3046
 
2998
3047
  const numberNode = options => {
2999
3048
  const {
@@ -3017,7 +3066,7 @@ exports.numberNode = numberNode;
3017
3066
 
3018
3067
  /***/ }),
3019
3068
 
3020
- /***/ 56075:
3069
+ /***/ 75634:
3021
3070
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
3022
3071
 
3023
3072
  "use strict";
@@ -3028,7 +3077,7 @@ Object.defineProperty(exports, "__esModule", ({
3028
3077
  }));
3029
3078
  exports.rootNode = void 0;
3030
3079
 
3031
- __webpack_require__(45639);
3080
+ __webpack_require__(32661);
3032
3081
 
3033
3082
  const rootNode = options => {
3034
3083
  const {
@@ -3049,7 +3098,7 @@ exports.rootNode = rootNode;
3049
3098
 
3050
3099
  /***/ }),
3051
3100
 
3052
- /***/ 84250:
3101
+ /***/ 74589:
3053
3102
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
3054
3103
 
3055
3104
  "use strict";
@@ -3069,13 +3118,13 @@ var _inquirer = _interopRequireDefault(__webpack_require__(82761));
3069
3118
 
3070
3119
  var Rx = _interopRequireWildcard(__webpack_require__(68798));
3071
3120
 
3072
- var _baseCliReader = __webpack_require__(99490);
3121
+ var _baseCliReader = __webpack_require__(27969);
3073
3122
 
3074
- var _constant = __webpack_require__(25260);
3123
+ var _constant = __webpack_require__(56124);
3075
3124
 
3076
- var questionsHandlers = _interopRequireWildcard(__webpack_require__(10860));
3125
+ var questionsHandlers = _interopRequireWildcard(__webpack_require__(47909));
3077
3126
 
3078
- var _utils = __webpack_require__(43711);
3127
+ var _utils = __webpack_require__(32300);
3079
3128
 
3080
3129
  Object.keys(_utils).forEach(function (key) {
3081
3130
  if (key === "default" || key === "__esModule") return;
@@ -3283,7 +3332,7 @@ setCliQuestionsHandlers(questionsHandlers);
3283
3332
 
3284
3333
  /***/ }),
3285
3334
 
3286
- /***/ 43711:
3335
+ /***/ 32300:
3287
3336
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
3288
3337
 
3289
3338
  "use strict";
@@ -3294,7 +3343,7 @@ Object.defineProperty(exports, "__esModule", ({
3294
3343
  }));
3295
3344
  exports.toPromiseQuestionHandlerLoop = exports.toPromiseQuestionHandler = exports.getWhen = exports.getValidate = exports.getTransformer = exports.getQuestion = exports.getMessage = exports.getFilter = exports.getDefaultValue = exports.getChoices = void 0;
3296
3345
 
3297
- var _easyFormCore = __webpack_require__(94144);
3346
+ var _easyFormCore = __webpack_require__(67566);
3298
3347
 
3299
3348
  function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
3300
3349
 
@@ -3591,7 +3640,7 @@ exports.toPromiseQuestionHandlerLoop = toPromiseQuestionHandlerLoop;
3591
3640
 
3592
3641
  /***/ }),
3593
3642
 
3594
- /***/ 25260:
3643
+ /***/ 56124:
3595
3644
  /***/ ((__unused_webpack_module, exports) => {
3596
3645
 
3597
3646
  "use strict";
@@ -3616,7 +3665,7 @@ exports.CliNodeHandlers = CliNodeHandlers;
3616
3665
 
3617
3666
  /***/ }),
3618
3667
 
3619
- /***/ 48979:
3668
+ /***/ 24191:
3620
3669
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
3621
3670
 
3622
3671
  "use strict";
@@ -3626,7 +3675,7 @@ Object.defineProperty(exports, "__esModule", ({
3626
3675
  value: true
3627
3676
  }));
3628
3677
 
3629
- var _cliReader = __webpack_require__(84250);
3678
+ var _cliReader = __webpack_require__(74589);
3630
3679
 
3631
3680
  Object.keys(_cliReader).forEach(function (key) {
3632
3681
  if (key === "default" || key === "__esModule") return;
@@ -3639,7 +3688,7 @@ Object.keys(_cliReader).forEach(function (key) {
3639
3688
  });
3640
3689
  });
3641
3690
 
3642
- var _ICli = __webpack_require__(88424);
3691
+ var _ICli = __webpack_require__(35516);
3643
3692
 
3644
3693
  Object.keys(_ICli).forEach(function (key) {
3645
3694
  if (key === "default" || key === "__esModule") return;
@@ -3652,7 +3701,7 @@ Object.keys(_ICli).forEach(function (key) {
3652
3701
  });
3653
3702
  });
3654
3703
 
3655
- var _easyFormCore = __webpack_require__(94144);
3704
+ var _easyFormCore = __webpack_require__(67566);
3656
3705
 
3657
3706
  Object.keys(_easyFormCore).forEach(function (key) {
3658
3707
  if (key === "default" || key === "__esModule") return;
@@ -3667,7 +3716,7 @@ Object.keys(_easyFormCore).forEach(function (key) {
3667
3716
 
3668
3717
  /***/ }),
3669
3718
 
3670
- /***/ 65124:
3719
+ /***/ 85973:
3671
3720
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
3672
3721
 
3673
3722
  "use strict";
@@ -3678,11 +3727,11 @@ Object.defineProperty(exports, "__esModule", ({
3678
3727
  }));
3679
3728
  exports.BaseReader = void 0;
3680
3729
 
3681
- var _checkSchema = __webpack_require__(1085);
3730
+ var _checkSchema = __webpack_require__(54887);
3682
3731
 
3683
- var _constant = __webpack_require__(89428);
3732
+ var _constant = __webpack_require__(38085);
3684
3733
 
3685
- var _utils = __webpack_require__(29932);
3734
+ var _utils = __webpack_require__(44068);
3686
3735
 
3687
3736
  const _excluded = ["effectedByFields", "action"];
3688
3737
 
@@ -3972,7 +4021,7 @@ exports.BaseReader = BaseReader;
3972
4021
 
3973
4022
  /***/ }),
3974
4023
 
3975
- /***/ 1085:
4024
+ /***/ 54887:
3976
4025
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
3977
4026
 
3978
4027
  "use strict";
@@ -3983,9 +4032,9 @@ Object.defineProperty(exports, "__esModule", ({
3983
4032
  }));
3984
4033
  exports.checkSchema = void 0;
3985
4034
 
3986
- var _constant = __webpack_require__(89428);
4035
+ var _constant = __webpack_require__(38085);
3987
4036
 
3988
- var _utils = __webpack_require__(29932);
4037
+ var _utils = __webpack_require__(44068);
3989
4038
 
3990
4039
  const checkFieldType = schema => {
3991
4040
  // field type detection
@@ -4112,7 +4161,7 @@ exports.checkSchema = checkSchema;
4112
4161
 
4113
4162
  /***/ }),
4114
4163
 
4115
- /***/ 89428:
4164
+ /***/ 38085:
4116
4165
  /***/ ((__unused_webpack_module, exports) => {
4117
4166
 
4118
4167
  "use strict";
@@ -4169,7 +4218,7 @@ exports.MESSAGE = MESSAGE;
4169
4218
 
4170
4219
  /***/ }),
4171
4220
 
4172
- /***/ 28618:
4221
+ /***/ 82344:
4173
4222
  /***/ ((__unused_webpack_module, exports) => {
4174
4223
 
4175
4224
  "use strict";
@@ -4220,7 +4269,7 @@ function forEach(from, callback) {
4220
4269
 
4221
4270
  /***/ }),
4222
4271
 
4223
- /***/ 62348:
4272
+ /***/ 93783:
4224
4273
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
4225
4274
 
4226
4275
  "use strict";
@@ -4231,9 +4280,9 @@ Object.defineProperty(exports, "__esModule", ({
4231
4280
  }));
4232
4281
  exports.Graph = void 0;
4233
4282
 
4234
- var _collections = __webpack_require__(28618);
4283
+ var _collections = __webpack_require__(82344);
4235
4284
 
4236
- var _types = __webpack_require__(28309);
4285
+ var _types = __webpack_require__(96691);
4237
4286
 
4238
4287
  function newNode(data) {
4239
4288
  return {
@@ -4325,7 +4374,7 @@ exports.Graph = Graph;
4325
4374
 
4326
4375
  /***/ }),
4327
4376
 
4328
- /***/ 22810:
4377
+ /***/ 45741:
4329
4378
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
4330
4379
 
4331
4380
  "use strict";
@@ -4336,11 +4385,11 @@ Object.defineProperty(exports, "__esModule", ({
4336
4385
  }));
4337
4386
  exports.EffectUtil = void 0;
4338
4387
 
4339
- var _utils = __webpack_require__(29932);
4388
+ var _utils = __webpack_require__(44068);
4340
4389
 
4341
- var _graph = __webpack_require__(62348);
4390
+ var _graph = __webpack_require__(93783);
4342
4391
 
4343
- var _types = __webpack_require__(28309);
4392
+ var _types = __webpack_require__(96691);
4344
4393
 
4345
4394
  function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
4346
4395
 
@@ -4505,7 +4554,7 @@ exports.EffectUtil = EffectUtil;
4505
4554
 
4506
4555
  /***/ }),
4507
4556
 
4508
- /***/ 28309:
4557
+ /***/ 96691:
4509
4558
  /***/ ((__unused_webpack_module, exports) => {
4510
4559
 
4511
4560
  "use strict";
@@ -4543,7 +4592,7 @@ function isObject(obj) {
4543
4592
 
4544
4593
  /***/ }),
4545
4594
 
4546
- /***/ 94144:
4595
+ /***/ 67566:
4547
4596
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
4548
4597
 
4549
4598
  "use strict";
@@ -4553,7 +4602,7 @@ Object.defineProperty(exports, "__esModule", ({
4553
4602
  value: true
4554
4603
  }));
4555
4604
 
4556
- var _baseReader = __webpack_require__(65124);
4605
+ var _baseReader = __webpack_require__(85973);
4557
4606
 
4558
4607
  Object.keys(_baseReader).forEach(function (key) {
4559
4608
  if (key === "default" || key === "__esModule") return;
@@ -4566,7 +4615,7 @@ Object.keys(_baseReader).forEach(function (key) {
4566
4615
  });
4567
4616
  });
4568
4617
 
4569
- var _types = __webpack_require__(13027);
4618
+ var _types = __webpack_require__(25996);
4570
4619
 
4571
4620
  Object.keys(_types).forEach(function (key) {
4572
4621
  if (key === "default" || key === "__esModule") return;
@@ -4579,7 +4628,7 @@ Object.keys(_types).forEach(function (key) {
4579
4628
  });
4580
4629
  });
4581
4630
 
4582
- var _constant = __webpack_require__(89428);
4631
+ var _constant = __webpack_require__(38085);
4583
4632
 
4584
4633
  Object.keys(_constant).forEach(function (key) {
4585
4634
  if (key === "default" || key === "__esModule") return;
@@ -4592,7 +4641,7 @@ Object.keys(_constant).forEach(function (key) {
4592
4641
  });
4593
4642
  });
4594
4643
 
4595
- var _utils = __webpack_require__(29932);
4644
+ var _utils = __webpack_require__(44068);
4596
4645
 
4597
4646
  Object.keys(_utils).forEach(function (key) {
4598
4647
  if (key === "default" || key === "__esModule") return;
@@ -4605,7 +4654,7 @@ Object.keys(_utils).forEach(function (key) {
4605
4654
  });
4606
4655
  });
4607
4656
 
4608
- var _effectUtil = __webpack_require__(22810);
4657
+ var _effectUtil = __webpack_require__(45741);
4609
4658
 
4610
4659
  Object.keys(_effectUtil).forEach(function (key) {
4611
4660
  if (key === "default" || key === "__esModule") return;
@@ -4618,7 +4667,7 @@ Object.keys(_effectUtil).forEach(function (key) {
4618
4667
  });
4619
4668
  });
4620
4669
 
4621
- var _checkSchema = __webpack_require__(1085);
4670
+ var _checkSchema = __webpack_require__(54887);
4622
4671
 
4623
4672
  Object.keys(_checkSchema).forEach(function (key) {
4624
4673
  if (key === "default" || key === "__esModule") return;
@@ -4633,14 +4682,14 @@ Object.keys(_checkSchema).forEach(function (key) {
4633
4682
 
4634
4683
  /***/ }),
4635
4684
 
4636
- /***/ 20378:
4685
+ /***/ 54365:
4637
4686
  /***/ (() => {
4638
4687
 
4639
4688
 
4640
4689
 
4641
4690
  /***/ }),
4642
4691
 
4643
- /***/ 13027:
4692
+ /***/ 25996:
4644
4693
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
4645
4694
 
4646
4695
  "use strict";
@@ -4650,7 +4699,7 @@ Object.defineProperty(exports, "__esModule", ({
4650
4699
  value: true
4651
4700
  }));
4652
4701
 
4653
- var _ISchema = __webpack_require__(20378);
4702
+ var _ISchema = __webpack_require__(54365);
4654
4703
 
4655
4704
  Object.keys(_ISchema).forEach(function (key) {
4656
4705
  if (key === "default" || key === "__esModule") return;
@@ -4665,7 +4714,7 @@ Object.keys(_ISchema).forEach(function (key) {
4665
4714
 
4666
4715
  /***/ }),
4667
4716
 
4668
- /***/ 29932:
4717
+ /***/ 44068:
4669
4718
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
4670
4719
 
4671
4720
  "use strict";
@@ -4675,7 +4724,7 @@ Object.defineProperty(exports, "__esModule", ({
4675
4724
  value: true
4676
4725
  }));
4677
4726
 
4678
- var _tools = __webpack_require__(1202);
4727
+ var _tools = __webpack_require__(97734);
4679
4728
 
4680
4729
  Object.keys(_tools).forEach(function (key) {
4681
4730
  if (key === "default" || key === "__esModule") return;
@@ -4688,7 +4737,7 @@ Object.keys(_tools).forEach(function (key) {
4688
4737
  });
4689
4738
  });
4690
4739
 
4691
- var _interator = __webpack_require__(18683);
4740
+ var _interator = __webpack_require__(2369);
4692
4741
 
4693
4742
  Object.keys(_interator).forEach(function (key) {
4694
4743
  if (key === "default" || key === "__esModule") return;
@@ -4701,7 +4750,7 @@ Object.keys(_interator).forEach(function (key) {
4701
4750
  });
4702
4751
  });
4703
4752
 
4704
- var _itemsField = __webpack_require__(4963);
4753
+ var _itemsField = __webpack_require__(60959);
4705
4754
 
4706
4755
  Object.keys(_itemsField).forEach(function (key) {
4707
4756
  if (key === "default" || key === "__esModule") return;
@@ -4714,7 +4763,7 @@ Object.keys(_itemsField).forEach(function (key) {
4714
4763
  });
4715
4764
  });
4716
4765
 
4717
- var _keyField = __webpack_require__(3260);
4766
+ var _keyField = __webpack_require__(3310);
4718
4767
 
4719
4768
  Object.keys(_keyField).forEach(function (key) {
4720
4769
  if (key === "default" || key === "__esModule") return;
@@ -4727,7 +4776,7 @@ Object.keys(_keyField).forEach(function (key) {
4727
4776
  });
4728
4777
  });
4729
4778
 
4730
- var _stateField = __webpack_require__(65788);
4779
+ var _stateField = __webpack_require__(63179);
4731
4780
 
4732
4781
  Object.keys(_stateField).forEach(function (key) {
4733
4782
  if (key === "default" || key === "__esModule") return;
@@ -4740,7 +4789,7 @@ Object.keys(_stateField).forEach(function (key) {
4740
4789
  });
4741
4790
  });
4742
4791
 
4743
- var _nodeInfo = __webpack_require__(45761);
4792
+ var _nodeInfo = __webpack_require__(16784);
4744
4793
 
4745
4794
  Object.keys(_nodeInfo).forEach(function (key) {
4746
4795
  if (key === "default" || key === "__esModule") return;
@@ -4755,7 +4804,7 @@ Object.keys(_nodeInfo).forEach(function (key) {
4755
4804
 
4756
4805
  /***/ }),
4757
4806
 
4758
- /***/ 18683:
4807
+ /***/ 2369:
4759
4808
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
4760
4809
 
4761
4810
  "use strict";
@@ -4766,9 +4815,9 @@ Object.defineProperty(exports, "__esModule", ({
4766
4815
  }));
4767
4816
  exports.forEachWithKeyChain = exports.forEach = exports.filterNone = exports.filter = void 0;
4768
4817
 
4769
- var _itemsField = __webpack_require__(4963);
4818
+ var _itemsField = __webpack_require__(60959);
4770
4819
 
4771
- var _stateField = __webpack_require__(65788);
4820
+ var _stateField = __webpack_require__(63179);
4772
4821
 
4773
4822
  // Foreach with key chain
4774
4823
  const forEachWithKeyChain = (schema, handler) => {
@@ -4935,7 +4984,7 @@ exports.filter = filter;
4935
4984
 
4936
4985
  /***/ }),
4937
4986
 
4938
- /***/ 4963:
4987
+ /***/ 60959:
4939
4988
  /***/ ((__unused_webpack_module, exports) => {
4940
4989
 
4941
4990
  "use strict";
@@ -4963,7 +5012,7 @@ exports.getItems = getItems;
4963
5012
 
4964
5013
  /***/ }),
4965
5014
 
4966
- /***/ 3260:
5015
+ /***/ 3310:
4967
5016
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
4968
5017
 
4969
5018
  "use strict";
@@ -4974,7 +5023,7 @@ Object.defineProperty(exports, "__esModule", ({
4974
5023
  }));
4975
5024
  exports.getAllKeys = void 0;
4976
5025
 
4977
- var _itemsField = __webpack_require__(4963);
5026
+ var _itemsField = __webpack_require__(60959);
4978
5027
 
4979
5028
  const getAllKeys = schema => {
4980
5029
  const keys = [];
@@ -4995,7 +5044,7 @@ exports.getAllKeys = getAllKeys;
4995
5044
 
4996
5045
  /***/ }),
4997
5046
 
4998
- /***/ 45761:
5047
+ /***/ 16784:
4999
5048
  /***/ ((__unused_webpack_module, exports) => {
5000
5049
 
5001
5050
  "use strict";
@@ -5084,7 +5133,7 @@ exports.getNodeInfo = getNodeInfo;
5084
5133
 
5085
5134
  /***/ }),
5086
5135
 
5087
- /***/ 65788:
5136
+ /***/ 63179:
5088
5137
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
5089
5138
 
5090
5139
  "use strict";
@@ -5097,9 +5146,9 @@ exports.setSchemaInitValue = exports.setInitValues = exports.isEffectedValue = e
5097
5146
 
5098
5147
  var _cloneDeep2 = _interopRequireDefault(__webpack_require__(11605));
5099
5148
 
5100
- var _itemsField = __webpack_require__(4963);
5149
+ var _itemsField = __webpack_require__(60959);
5101
5150
 
5102
- var _tools = __webpack_require__(1202);
5151
+ var _tools = __webpack_require__(97734);
5103
5152
 
5104
5153
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
5105
5154
 
@@ -5197,7 +5246,7 @@ exports.getItemValue = getItemValue;
5197
5246
 
5198
5247
  /***/ }),
5199
5248
 
5200
- /***/ 1202:
5249
+ /***/ 97734:
5201
5250
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
5202
5251
 
5203
5252
  "use strict";
@@ -5254,7 +5303,7 @@ exports.booleanToString = booleanToString;
5254
5303
 
5255
5304
  /***/ }),
5256
5305
 
5257
- /***/ 22183:
5306
+ /***/ 46133:
5258
5307
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
5259
5308
 
5260
5309
  "use strict";
@@ -5270,11 +5319,11 @@ Object.defineProperty(exports, "List", ({
5270
5319
  }
5271
5320
  }));
5272
5321
 
5273
- var _list = __webpack_require__(73405);
5322
+ var _list = __webpack_require__(29149);
5274
5323
 
5275
5324
  /***/ }),
5276
5325
 
5277
- /***/ 73405:
5326
+ /***/ 29149:
5278
5327
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
5279
5328
 
5280
5329
  "use strict";
@@ -5305,7 +5354,7 @@ var _operators = __webpack_require__(26579);
5305
5354
 
5306
5355
  var _incrementListIndex = _interopRequireDefault(__webpack_require__(69062));
5307
5356
 
5308
- var _utils = __webpack_require__(41450);
5357
+ var _utils = __webpack_require__(17697);
5309
5358
 
5310
5359
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
5311
5360
 
@@ -5442,7 +5491,7 @@ exports.List = List;
5442
5491
 
5443
5492
  /***/ }),
5444
5493
 
5445
- /***/ 41450:
5494
+ /***/ 17697:
5446
5495
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
5447
5496
 
5448
5497
  "use strict";
@@ -5455,7 +5504,7 @@ exports.listRender = listRender;
5455
5504
 
5456
5505
  var _chalk = _interopRequireDefault(__webpack_require__(9834));
5457
5506
 
5458
- var _pointer = __webpack_require__(50180);
5507
+ var _pointer = __webpack_require__(56040);
5459
5508
 
5460
5509
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
5461
5510
 
@@ -5504,7 +5553,7 @@ function listRender(choices, pointer, answers) {
5504
5553
 
5505
5554
  /***/ }),
5506
5555
 
5507
- /***/ 50180:
5556
+ /***/ 56040:
5508
5557
  /***/ ((__unused_webpack_module, exports) => {
5509
5558
 
5510
5559
  "use strict";
@@ -5531,7 +5580,7 @@ exports.pointer = pointer;
5531
5580
 
5532
5581
  /***/ }),
5533
5582
 
5534
- /***/ 94093:
5583
+ /***/ 98368:
5535
5584
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
5536
5585
 
5537
5586
  "use strict";
@@ -5544,7 +5593,7 @@ exports.I18n = void 0;
5544
5593
 
5545
5594
  var _get2 = _interopRequireDefault(__webpack_require__(71189));
5546
5595
 
5547
- var _utils = __webpack_require__(87923);
5596
+ var _index = __webpack_require__(24033);
5548
5597
 
5549
5598
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
5550
5599
 
@@ -5582,7 +5631,7 @@ class I18n {
5582
5631
  this.languageMap = languageMap;
5583
5632
  }
5584
5633
 
5585
- return (0, _utils.getObjKeyMap)(this.languageMap[this.language]);
5634
+ return (0, _index.getObjKeyMap)(this.languageMap[this.language]);
5586
5635
  }
5587
5636
 
5588
5637
  changeLanguage(config) {
@@ -5605,7 +5654,7 @@ exports.I18n = I18n;
5605
5654
 
5606
5655
  /***/ }),
5607
5656
 
5608
- /***/ 87923:
5657
+ /***/ 24033:
5609
5658
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
5610
5659
 
5611
5660
  "use strict";
@@ -7666,8 +7715,8 @@ var buildFullPath = __webpack_require__(95889);
7666
7715
  var buildURL = __webpack_require__(52737);
7667
7716
  var http = __webpack_require__(13685);
7668
7717
  var https = __webpack_require__(95687);
7669
- var httpFollow = __webpack_require__(30920).http;
7670
- var httpsFollow = __webpack_require__(30920).https;
7718
+ var httpFollow = (__webpack_require__(22117).http);
7719
+ var httpsFollow = (__webpack_require__(22117).https);
7671
7720
  var url = __webpack_require__(57310);
7672
7721
  var zlib = __webpack_require__(59796);
7673
7722
  var pkg = __webpack_require__(31025);
@@ -10434,7 +10483,7 @@ module.exports = BufferList
10434
10483
  "use strict";
10435
10484
 
10436
10485
 
10437
- const DuplexStream = __webpack_require__(84961).Duplex
10486
+ const DuplexStream = (__webpack_require__(84961).Duplex)
10438
10487
  const inherits = __webpack_require__(57337)
10439
10488
  const BufferList = __webpack_require__(45445)
10440
10489
 
@@ -14114,7 +14163,7 @@ function cliWidth(options) {
14114
14163
  "use strict";
14115
14164
 
14116
14165
 
14117
- const PassThrough = __webpack_require__(12781).PassThrough;
14166
+ const PassThrough = (__webpack_require__(12781).PassThrough);
14118
14167
  const mimicResponse = __webpack_require__(19062);
14119
14168
 
14120
14169
  const cloneResponse = response => {
@@ -17327,7 +17376,7 @@ module.exports = resolveCommand;
17327
17376
 
17328
17377
  /***/ }),
17329
17378
 
17330
- /***/ 45357:
17379
+ /***/ 88351:
17331
17380
  /***/ ((module, exports, __webpack_require__) => {
17332
17381
 
17333
17382
  /* eslint-env browser */
@@ -17584,7 +17633,7 @@ function localstorage() {
17584
17633
  }
17585
17634
  }
17586
17635
 
17587
- module.exports = __webpack_require__(10214)(exports);
17636
+ module.exports = __webpack_require__(19507)(exports);
17588
17637
 
17589
17638
  const {formatters} = module.exports;
17590
17639
 
@@ -17603,7 +17652,7 @@ formatters.j = function (v) {
17603
17652
 
17604
17653
  /***/ }),
17605
17654
 
17606
- /***/ 10214:
17655
+ /***/ 19507:
17607
17656
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
17608
17657
 
17609
17658
 
@@ -17642,7 +17691,7 @@ function setup(env) {
17642
17691
 
17643
17692
  /**
17644
17693
  * Selects a color for a debug namespace
17645
- * @param {String} namespace The namespace string for the for the debug instance to be colored
17694
+ * @param {String} namespace The namespace string for the debug instance to be colored
17646
17695
  * @return {Number|String} An ANSI color code for the given namespace
17647
17696
  * @api private
17648
17697
  */
@@ -17884,7 +17933,7 @@ module.exports = setup;
17884
17933
 
17885
17934
  /***/ }),
17886
17935
 
17887
- /***/ 24744:
17936
+ /***/ 68919:
17888
17937
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
17889
17938
 
17890
17939
  /**
@@ -17893,15 +17942,15 @@ module.exports = setup;
17893
17942
  */
17894
17943
 
17895
17944
  if (typeof process === 'undefined' || process.type === 'renderer' || process.browser === true || process.__nwjs) {
17896
- module.exports = __webpack_require__(45357);
17945
+ module.exports = __webpack_require__(88351);
17897
17946
  } else {
17898
- module.exports = __webpack_require__(58500);
17947
+ module.exports = __webpack_require__(89534);
17899
17948
  }
17900
17949
 
17901
17950
 
17902
17951
  /***/ }),
17903
17952
 
17904
- /***/ 58500:
17953
+ /***/ 89534:
17905
17954
  /***/ ((module, exports, __webpack_require__) => {
17906
17955
 
17907
17956
  /**
@@ -18143,7 +18192,7 @@ function init(debug) {
18143
18192
  }
18144
18193
  }
18145
18194
 
18146
- module.exports = __webpack_require__(10214)(exports);
18195
+ module.exports = __webpack_require__(19507)(exports);
18147
18196
 
18148
18197
  const {formatters} = module.exports;
18149
18198
 
@@ -25750,7 +25799,7 @@ module.exports = makeError;
25750
25799
  "use strict";
25751
25800
 
25752
25801
  const os = __webpack_require__(22037);
25753
- const onExit = __webpack_require__(41975);
25802
+ const onExit = __webpack_require__(66217);
25754
25803
 
25755
25804
  const DEFAULT_FORCE_KILL_TIMEOUT = 1000 * 5;
25756
25805
 
@@ -26634,7 +26683,7 @@ module.exports.windows = windows;
26634
26683
 
26635
26684
  /***/ }),
26636
26685
 
26637
- /***/ 60832:
26686
+ /***/ 42846:
26638
26687
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
26639
26688
 
26640
26689
  var debug;
@@ -26643,7 +26692,7 @@ module.exports = function () {
26643
26692
  if (!debug) {
26644
26693
  try {
26645
26694
  /* eslint global-require: off */
26646
- debug = __webpack_require__(24744)("follow-redirects");
26695
+ debug = __webpack_require__(68919)("follow-redirects");
26647
26696
  }
26648
26697
  catch (error) { /* */ }
26649
26698
  if (typeof debug !== "function") {
@@ -26656,16 +26705,16 @@ module.exports = function () {
26656
26705
 
26657
26706
  /***/ }),
26658
26707
 
26659
- /***/ 30920:
26708
+ /***/ 22117:
26660
26709
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
26661
26710
 
26662
26711
  var url = __webpack_require__(57310);
26663
26712
  var URL = url.URL;
26664
26713
  var http = __webpack_require__(13685);
26665
26714
  var https = __webpack_require__(95687);
26666
- var Writable = __webpack_require__(12781).Writable;
26715
+ var Writable = (__webpack_require__(12781).Writable);
26667
26716
  var assert = __webpack_require__(39491);
26668
- var debug = __webpack_require__(60832);
26717
+ var debug = __webpack_require__(42846);
26669
26718
 
26670
26719
  // Create handlers that pass events from native requests
26671
26720
  var events = ["abort", "aborted", "connect", "error", "socket", "timeout"];
@@ -27186,11 +27235,12 @@ function removeMatchingHeaders(regex, headers) {
27186
27235
  var lastValue;
27187
27236
  for (var header in headers) {
27188
27237
  if (regex.test(header)) {
27189
- lastValue = headers[header].toString().trim();
27238
+ lastValue = headers[header];
27190
27239
  delete headers[header];
27191
27240
  }
27192
27241
  }
27193
- return lastValue;
27242
+ return (lastValue === null || typeof lastValue === "undefined") ?
27243
+ undefined : String(lastValue).trim();
27194
27244
  }
27195
27245
 
27196
27246
  function createErrorType(code, defaultMessage) {
@@ -27239,8 +27289,8 @@ module.exports.wrap = wrap;
27239
27289
 
27240
27290
  const fs = __webpack_require__(62204)
27241
27291
  const path = __webpack_require__(71017)
27242
- const mkdirsSync = __webpack_require__(17433).mkdirsSync
27243
- const utimesMillisSync = __webpack_require__(16333).utimesMillisSync
27292
+ const mkdirsSync = (__webpack_require__(17433).mkdirsSync)
27293
+ const utimesMillisSync = (__webpack_require__(16333).utimesMillisSync)
27244
27294
  const stat = __webpack_require__(31197)
27245
27295
 
27246
27296
  function copySync (src, dest, opts) {
@@ -27426,9 +27476,9 @@ module.exports = {
27426
27476
 
27427
27477
  const fs = __webpack_require__(62204)
27428
27478
  const path = __webpack_require__(71017)
27429
- const mkdirs = __webpack_require__(17433).mkdirs
27430
- const pathExists = __webpack_require__(84906).pathExists
27431
- const utimesMillis = __webpack_require__(16333).utimesMillis
27479
+ const mkdirs = (__webpack_require__(17433).mkdirs)
27480
+ const pathExists = (__webpack_require__(84906).pathExists)
27481
+ const utimesMillis = (__webpack_require__(16333).utimesMillis)
27432
27482
  const stat = __webpack_require__(31197)
27433
27483
 
27434
27484
  function copy (src, dest, opts, cb) {
@@ -27664,7 +27714,7 @@ module.exports = copy
27664
27714
  "use strict";
27665
27715
 
27666
27716
 
27667
- const u = __webpack_require__(84357).fromCallback
27717
+ const u = (__webpack_require__(84357).fromCallback)
27668
27718
  module.exports = {
27669
27719
  copy: u(__webpack_require__(77544))
27670
27720
  }
@@ -27678,7 +27728,7 @@ module.exports = {
27678
27728
  "use strict";
27679
27729
 
27680
27730
 
27681
- const u = __webpack_require__(84357).fromPromise
27731
+ const u = (__webpack_require__(84357).fromPromise)
27682
27732
  const fs = __webpack_require__(48085)
27683
27733
  const path = __webpack_require__(71017)
27684
27734
  const mkdir = __webpack_require__(17433)
@@ -27725,7 +27775,7 @@ module.exports = {
27725
27775
  "use strict";
27726
27776
 
27727
27777
 
27728
- const u = __webpack_require__(84357).fromCallback
27778
+ const u = (__webpack_require__(84357).fromCallback)
27729
27779
  const path = __webpack_require__(71017)
27730
27780
  const fs = __webpack_require__(62204)
27731
27781
  const mkdir = __webpack_require__(17433)
@@ -27833,11 +27883,11 @@ module.exports = {
27833
27883
  "use strict";
27834
27884
 
27835
27885
 
27836
- const u = __webpack_require__(84357).fromCallback
27886
+ const u = (__webpack_require__(84357).fromCallback)
27837
27887
  const path = __webpack_require__(71017)
27838
27888
  const fs = __webpack_require__(62204)
27839
27889
  const mkdir = __webpack_require__(17433)
27840
- const pathExists = __webpack_require__(84906).pathExists
27890
+ const pathExists = (__webpack_require__(84906).pathExists)
27841
27891
  const { areIdentical } = __webpack_require__(31197)
27842
27892
 
27843
27893
  function createLink (srcpath, dstpath, callback) {
@@ -27907,7 +27957,7 @@ module.exports = {
27907
27957
 
27908
27958
  const path = __webpack_require__(71017)
27909
27959
  const fs = __webpack_require__(62204)
27910
- const pathExists = __webpack_require__(84906).pathExists
27960
+ const pathExists = (__webpack_require__(84906).pathExists)
27911
27961
 
27912
27962
  /**
27913
27963
  * Function that returns two types of paths, one relative to symlink, and one
@@ -28051,7 +28101,7 @@ module.exports = {
28051
28101
  "use strict";
28052
28102
 
28053
28103
 
28054
- const u = __webpack_require__(84357).fromCallback
28104
+ const u = (__webpack_require__(84357).fromCallback)
28055
28105
  const path = __webpack_require__(71017)
28056
28106
  const fs = __webpack_require__(48085)
28057
28107
  const _mkdirs = __webpack_require__(17433)
@@ -28066,7 +28116,7 @@ const _symlinkType = __webpack_require__(68938)
28066
28116
  const symlinkType = _symlinkType.symlinkType
28067
28117
  const symlinkTypeSync = _symlinkType.symlinkTypeSync
28068
28118
 
28069
- const pathExists = __webpack_require__(84906).pathExists
28119
+ const pathExists = (__webpack_require__(84906).pathExists)
28070
28120
 
28071
28121
  const { areIdentical } = __webpack_require__(31197)
28072
28122
 
@@ -28142,7 +28192,7 @@ module.exports = {
28142
28192
 
28143
28193
  // This is adapted from https://github.com/normalize/mz
28144
28194
  // Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and Contributors
28145
- const u = __webpack_require__(84357).fromCallback
28195
+ const u = (__webpack_require__(84357).fromCallback)
28146
28196
  const fs = __webpack_require__(62204)
28147
28197
 
28148
28198
  const api = [
@@ -28294,7 +28344,7 @@ module.exports = {
28294
28344
  "use strict";
28295
28345
 
28296
28346
 
28297
- const u = __webpack_require__(84357).fromPromise
28347
+ const u = (__webpack_require__(84357).fromPromise)
28298
28348
  const jsonFile = __webpack_require__(73545)
28299
28349
 
28300
28350
  jsonFile.outputJson = u(__webpack_require__(84981))
@@ -28376,7 +28426,7 @@ module.exports = outputJson
28376
28426
 
28377
28427
  "use strict";
28378
28428
 
28379
- const u = __webpack_require__(84357).fromPromise
28429
+ const u = (__webpack_require__(84357).fromPromise)
28380
28430
  const { makeDir: _makeDir, makeDirSync } = __webpack_require__(75594)
28381
28431
  const makeDir = u(_makeDir)
28382
28432
 
@@ -28478,9 +28528,9 @@ module.exports = {
28478
28528
 
28479
28529
  const fs = __webpack_require__(62204)
28480
28530
  const path = __webpack_require__(71017)
28481
- const copySync = __webpack_require__(55391).copySync
28482
- const removeSync = __webpack_require__(13490).removeSync
28483
- const mkdirpSync = __webpack_require__(17433).mkdirpSync
28531
+ const copySync = (__webpack_require__(55391).copySync)
28532
+ const removeSync = (__webpack_require__(13490).removeSync)
28533
+ const mkdirpSync = (__webpack_require__(17433).mkdirpSync)
28484
28534
  const stat = __webpack_require__(31197)
28485
28535
 
28486
28536
  function moveSync (src, dest, opts) {
@@ -28538,7 +28588,7 @@ module.exports = moveSync
28538
28588
  "use strict";
28539
28589
 
28540
28590
 
28541
- const u = __webpack_require__(84357).fromCallback
28591
+ const u = (__webpack_require__(84357).fromCallback)
28542
28592
  module.exports = {
28543
28593
  move: u(__webpack_require__(69071))
28544
28594
  }
@@ -28554,10 +28604,10 @@ module.exports = {
28554
28604
 
28555
28605
  const fs = __webpack_require__(62204)
28556
28606
  const path = __webpack_require__(71017)
28557
- const copy = __webpack_require__(97969).copy
28558
- const remove = __webpack_require__(13490).remove
28559
- const mkdirp = __webpack_require__(17433).mkdirp
28560
- const pathExists = __webpack_require__(84906).pathExists
28607
+ const copy = (__webpack_require__(97969).copy)
28608
+ const remove = (__webpack_require__(13490).remove)
28609
+ const mkdirp = (__webpack_require__(17433).mkdirp)
28610
+ const pathExists = (__webpack_require__(84906).pathExists)
28561
28611
  const stat = __webpack_require__(31197)
28562
28612
 
28563
28613
  function move (src, dest, opts, cb) {
@@ -28633,11 +28683,11 @@ module.exports = move
28633
28683
  "use strict";
28634
28684
 
28635
28685
 
28636
- const u = __webpack_require__(84357).fromCallback
28686
+ const u = (__webpack_require__(84357).fromCallback)
28637
28687
  const fs = __webpack_require__(62204)
28638
28688
  const path = __webpack_require__(71017)
28639
28689
  const mkdir = __webpack_require__(17433)
28640
- const pathExists = __webpack_require__(84906).pathExists
28690
+ const pathExists = (__webpack_require__(84906).pathExists)
28641
28691
 
28642
28692
  function outputFile (file, data, encoding, callback) {
28643
28693
  if (typeof encoding === 'function') {
@@ -28680,7 +28730,7 @@ module.exports = {
28680
28730
 
28681
28731
  "use strict";
28682
28732
 
28683
- const u = __webpack_require__(84357).fromPromise
28733
+ const u = (__webpack_require__(84357).fromPromise)
28684
28734
  const fs = __webpack_require__(48085)
28685
28735
 
28686
28736
  function pathExists (path) {
@@ -28702,7 +28752,7 @@ module.exports = {
28702
28752
 
28703
28753
 
28704
28754
  const fs = __webpack_require__(62204)
28705
- const u = __webpack_require__(84357).fromCallback
28755
+ const u = (__webpack_require__(84357).fromCallback)
28706
28756
  const rimraf = __webpack_require__(94392)
28707
28757
 
28708
28758
  function remove (path, callback) {
@@ -29236,8 +29286,8 @@ module.exports = {
29236
29286
 
29237
29287
  "use strict";
29238
29288
 
29239
- const MiniPass = __webpack_require__(39357)
29240
- const EE = __webpack_require__(82361).EventEmitter
29289
+ const MiniPass = __webpack_require__(81675)
29290
+ const EE = (__webpack_require__(82361).EventEmitter)
29241
29291
  const fs = __webpack_require__(57147)
29242
29292
 
29243
29293
  let writev = fs.writev
@@ -30617,7 +30667,7 @@ var rp = __webpack_require__(63936)
30617
30667
  var minimatch = __webpack_require__(30852)
30618
30668
  var Minimatch = minimatch.Minimatch
30619
30669
  var inherits = __webpack_require__(57337)
30620
- var EE = __webpack_require__(82361).EventEmitter
30670
+ var EE = (__webpack_require__(82361).EventEmitter)
30621
30671
  var path = __webpack_require__(71017)
30622
30672
  var assert = __webpack_require__(39491)
30623
30673
  var isAbsolute = __webpack_require__(44186)
@@ -31371,7 +31421,7 @@ globSync.GlobSync = GlobSync
31371
31421
  var rp = __webpack_require__(63936)
31372
31422
  var minimatch = __webpack_require__(30852)
31373
31423
  var Minimatch = minimatch.Minimatch
31374
- var Glob = __webpack_require__(18318).Glob
31424
+ var Glob = (__webpack_require__(18318).Glob)
31375
31425
  var util = __webpack_require__(73837)
31376
31426
  var path = __webpack_require__(71017)
31377
31427
  var assert = __webpack_require__(39491)
@@ -31852,13 +31902,13 @@ GlobSync.prototype._makeAbs = function (f) {
31852
31902
 
31853
31903
  /***/ }),
31854
31904
 
31855
- /***/ 83166:
31905
+ /***/ 39026:
31856
31906
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
31857
31907
 
31858
31908
  "use strict";
31859
31909
 
31860
31910
  Object.defineProperty(exports, "__esModule", ({ value: true }));
31861
- const types_1 = __webpack_require__(47681);
31911
+ const types_1 = __webpack_require__(10009);
31862
31912
  function createRejection(error, ...beforeErrorGroups) {
31863
31913
  const promise = (async () => {
31864
31914
  if (error instanceof types_1.RequestError) {
@@ -31890,7 +31940,7 @@ exports["default"] = createRejection;
31890
31940
 
31891
31941
  /***/ }),
31892
31942
 
31893
- /***/ 13294:
31943
+ /***/ 93285:
31894
31944
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
31895
31945
 
31896
31946
  "use strict";
@@ -31909,12 +31959,12 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
31909
31959
  const events_1 = __webpack_require__(82361);
31910
31960
  const is_1 = __webpack_require__(49460);
31911
31961
  const PCancelable = __webpack_require__(74469);
31912
- const types_1 = __webpack_require__(47681);
31913
- const parse_body_1 = __webpack_require__(53158);
31914
- const core_1 = __webpack_require__(30105);
31915
- const proxy_events_1 = __webpack_require__(78608);
31916
- const get_buffer_1 = __webpack_require__(92183);
31917
- const is_response_ok_1 = __webpack_require__(78904);
31962
+ const types_1 = __webpack_require__(10009);
31963
+ const parse_body_1 = __webpack_require__(58405);
31964
+ const core_1 = __webpack_require__(40753);
31965
+ const proxy_events_1 = __webpack_require__(47538);
31966
+ const get_buffer_1 = __webpack_require__(21750);
31967
+ const is_response_ok_1 = __webpack_require__(67930);
31918
31968
  const proxiedRequestEvents = [
31919
31969
  'request',
31920
31970
  'response',
@@ -32068,12 +32118,12 @@ function asPromise(normalizedOptions) {
32068
32118
  return promise;
32069
32119
  }
32070
32120
  exports["default"] = asPromise;
32071
- __exportStar(__webpack_require__(47681), exports);
32121
+ __exportStar(__webpack_require__(10009), exports);
32072
32122
 
32073
32123
 
32074
32124
  /***/ }),
32075
32125
 
32076
- /***/ 63681:
32126
+ /***/ 11307:
32077
32127
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
32078
32128
 
32079
32129
  "use strict";
@@ -32159,13 +32209,13 @@ exports["default"] = normalizeArguments;
32159
32209
 
32160
32210
  /***/ }),
32161
32211
 
32162
- /***/ 53158:
32212
+ /***/ 58405:
32163
32213
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
32164
32214
 
32165
32215
  "use strict";
32166
32216
 
32167
32217
  Object.defineProperty(exports, "__esModule", ({ value: true }));
32168
- const types_1 = __webpack_require__(47681);
32218
+ const types_1 = __webpack_require__(10009);
32169
32219
  const parseBody = (response, responseType, parseJson, encoding) => {
32170
32220
  const { rawBody } = response;
32171
32221
  try {
@@ -32192,7 +32242,7 @@ exports["default"] = parseBody;
32192
32242
 
32193
32243
  /***/ }),
32194
32244
 
32195
- /***/ 47681:
32245
+ /***/ 10009:
32196
32246
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
32197
32247
 
32198
32248
  "use strict";
@@ -32209,7 +32259,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
32209
32259
  };
32210
32260
  Object.defineProperty(exports, "__esModule", ({ value: true }));
32211
32261
  exports.CancelError = exports.ParseError = void 0;
32212
- const core_1 = __webpack_require__(30105);
32262
+ const core_1 = __webpack_require__(40753);
32213
32263
  /**
32214
32264
  An error to be thrown when server response code is 2xx, and parsing body fails.
32215
32265
  Includes a `response` property.
@@ -32219,6 +32269,7 @@ class ParseError extends core_1.RequestError {
32219
32269
  const { options } = response.request;
32220
32270
  super(`${error.message} in "${options.url.toString()}"`, error, response.request);
32221
32271
  this.name = 'ParseError';
32272
+ this.code = this.code === 'ERR_GOT_REQUEST_ERROR' ? 'ERR_BODY_PARSE_FAILURE' : this.code;
32222
32273
  }
32223
32274
  }
32224
32275
  exports.ParseError = ParseError;
@@ -32229,18 +32280,19 @@ class CancelError extends core_1.RequestError {
32229
32280
  constructor(request) {
32230
32281
  super('Promise was canceled', {}, request);
32231
32282
  this.name = 'CancelError';
32283
+ this.code = 'ERR_CANCELED';
32232
32284
  }
32233
32285
  get isCanceled() {
32234
32286
  return true;
32235
32287
  }
32236
32288
  }
32237
32289
  exports.CancelError = CancelError;
32238
- __exportStar(__webpack_require__(30105), exports);
32290
+ __exportStar(__webpack_require__(40753), exports);
32239
32291
 
32240
32292
 
32241
32293
  /***/ }),
32242
32294
 
32243
- /***/ 54178:
32295
+ /***/ 1512:
32244
32296
  /***/ ((__unused_webpack_module, exports) => {
32245
32297
 
32246
32298
  "use strict";
@@ -32277,7 +32329,7 @@ exports["default"] = calculateRetryDelay;
32277
32329
 
32278
32330
  /***/ }),
32279
32331
 
32280
- /***/ 30105:
32332
+ /***/ 40753:
32281
32333
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
32282
32334
 
32283
32335
  "use strict";
@@ -32299,19 +32351,19 @@ const decompressResponse = __webpack_require__(8673);
32299
32351
  const http2wrapper = __webpack_require__(14277);
32300
32352
  const lowercaseKeys = __webpack_require__(5974);
32301
32353
  const is_1 = __webpack_require__(49460);
32302
- const get_body_size_1 = __webpack_require__(23279);
32303
- const is_form_data_1 = __webpack_require__(79308);
32304
- const proxy_events_1 = __webpack_require__(78608);
32305
- const timed_out_1 = __webpack_require__(16000);
32306
- const url_to_options_1 = __webpack_require__(333);
32307
- const options_to_url_1 = __webpack_require__(23377);
32308
- const weakable_map_1 = __webpack_require__(24052);
32309
- const get_buffer_1 = __webpack_require__(92183);
32310
- const dns_ip_version_1 = __webpack_require__(15847);
32311
- const is_response_ok_1 = __webpack_require__(78904);
32312
- const deprecation_warning_1 = __webpack_require__(75302);
32313
- const normalize_arguments_1 = __webpack_require__(63681);
32314
- const calculate_retry_delay_1 = __webpack_require__(54178);
32354
+ const get_body_size_1 = __webpack_require__(96004);
32355
+ const is_form_data_1 = __webpack_require__(99678);
32356
+ const proxy_events_1 = __webpack_require__(47538);
32357
+ const timed_out_1 = __webpack_require__(69012);
32358
+ const url_to_options_1 = __webpack_require__(22326);
32359
+ const options_to_url_1 = __webpack_require__(84045);
32360
+ const weakable_map_1 = __webpack_require__(37954);
32361
+ const get_buffer_1 = __webpack_require__(21750);
32362
+ const dns_ip_version_1 = __webpack_require__(26855);
32363
+ const is_response_ok_1 = __webpack_require__(67930);
32364
+ const deprecation_warning_1 = __webpack_require__(45907);
32365
+ const normalize_arguments_1 = __webpack_require__(11307);
32366
+ const calculate_retry_delay_1 = __webpack_require__(1512);
32315
32367
  let globalDnsCache;
32316
32368
  const kRequest = Symbol('request');
32317
32369
  const kResponse = Symbol('response');
@@ -32404,11 +32456,11 @@ Contains a `code` property with error class code, like `ECONNREFUSED`.
32404
32456
  */
32405
32457
  class RequestError extends Error {
32406
32458
  constructor(message, error, self) {
32407
- var _a;
32459
+ var _a, _b;
32408
32460
  super(message);
32409
32461
  Error.captureStackTrace(this, this.constructor);
32410
32462
  this.name = 'RequestError';
32411
- this.code = error.code;
32463
+ this.code = (_a = error.code) !== null && _a !== void 0 ? _a : 'ERR_GOT_REQUEST_ERROR';
32412
32464
  if (self instanceof Request) {
32413
32465
  Object.defineProperty(this, 'request', {
32414
32466
  enumerable: false,
@@ -32433,7 +32485,7 @@ class RequestError extends Error {
32433
32485
  value: self
32434
32486
  });
32435
32487
  }
32436
- this.timings = (_a = this.request) === null || _a === void 0 ? void 0 : _a.timings;
32488
+ this.timings = (_b = this.request) === null || _b === void 0 ? void 0 : _b.timings;
32437
32489
  // Recover the original stacktrace
32438
32490
  if (is_1.default.string(error.stack) && is_1.default.string(this.stack)) {
32439
32491
  const indexOfMessage = this.stack.indexOf(this.message) + this.message.length;
@@ -32456,6 +32508,7 @@ class MaxRedirectsError extends RequestError {
32456
32508
  constructor(request) {
32457
32509
  super(`Redirected ${request.options.maxRedirects} times. Aborting.`, {}, request);
32458
32510
  this.name = 'MaxRedirectsError';
32511
+ this.code = 'ERR_TOO_MANY_REDIRECTS';
32459
32512
  }
32460
32513
  }
32461
32514
  exports.MaxRedirectsError = MaxRedirectsError;
@@ -32467,6 +32520,7 @@ class HTTPError extends RequestError {
32467
32520
  constructor(response) {
32468
32521
  super(`Response code ${response.statusCode} (${response.statusMessage})`, {}, response.request);
32469
32522
  this.name = 'HTTPError';
32523
+ this.code = 'ERR_NON_2XX_3XX_RESPONSE';
32470
32524
  }
32471
32525
  }
32472
32526
  exports.HTTPError = HTTPError;
@@ -32478,6 +32532,7 @@ class CacheError extends RequestError {
32478
32532
  constructor(error, request) {
32479
32533
  super(error.message, error, request);
32480
32534
  this.name = 'CacheError';
32535
+ this.code = this.code === 'ERR_GOT_REQUEST_ERROR' ? 'ERR_CACHE_ACCESS' : this.code;
32481
32536
  }
32482
32537
  }
32483
32538
  exports.CacheError = CacheError;
@@ -32488,6 +32543,7 @@ class UploadError extends RequestError {
32488
32543
  constructor(error, request) {
32489
32544
  super(error.message, error, request);
32490
32545
  this.name = 'UploadError';
32546
+ this.code = this.code === 'ERR_GOT_REQUEST_ERROR' ? 'ERR_UPLOAD' : this.code;
32491
32547
  }
32492
32548
  }
32493
32549
  exports.UploadError = UploadError;
@@ -32511,6 +32567,7 @@ class ReadError extends RequestError {
32511
32567
  constructor(error, request) {
32512
32568
  super(error.message, error, request);
32513
32569
  this.name = 'ReadError';
32570
+ this.code = this.code === 'ERR_GOT_REQUEST_ERROR' ? 'ERR_READING_RESPONSE_STREAM' : this.code;
32514
32571
  }
32515
32572
  }
32516
32573
  exports.ReadError = ReadError;
@@ -32521,6 +32578,7 @@ class UnsupportedProtocolError extends RequestError {
32521
32578
  constructor(options) {
32522
32579
  super(`Unsupported protocol "${options.url.protocol}"`, {}, options);
32523
32580
  this.name = 'UnsupportedProtocolError';
32581
+ this.code = 'ERR_UNSUPPORTED_PROTOCOL';
32524
32582
  }
32525
32583
  }
32526
32584
  exports.UnsupportedProtocolError = UnsupportedProtocolError;
@@ -33776,7 +33834,7 @@ exports["default"] = Request;
33776
33834
 
33777
33835
  /***/ }),
33778
33836
 
33779
- /***/ 15847:
33837
+ /***/ 26855:
33780
33838
  /***/ ((__unused_webpack_module, exports) => {
33781
33839
 
33782
33840
  "use strict";
@@ -33801,7 +33859,7 @@ exports.dnsLookupIpVersionToFamily = (dnsLookupIpVersion) => {
33801
33859
 
33802
33860
  /***/ }),
33803
33861
 
33804
- /***/ 23279:
33862
+ /***/ 96004:
33805
33863
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
33806
33864
 
33807
33865
  "use strict";
@@ -33810,7 +33868,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
33810
33868
  const fs_1 = __webpack_require__(57147);
33811
33869
  const util_1 = __webpack_require__(73837);
33812
33870
  const is_1 = __webpack_require__(49460);
33813
- const is_form_data_1 = __webpack_require__(79308);
33871
+ const is_form_data_1 = __webpack_require__(99678);
33814
33872
  const statAsync = util_1.promisify(fs_1.stat);
33815
33873
  exports["default"] = async (body, headers) => {
33816
33874
  if (headers && 'content-length' in headers) {
@@ -33841,7 +33899,7 @@ exports["default"] = async (body, headers) => {
33841
33899
 
33842
33900
  /***/ }),
33843
33901
 
33844
- /***/ 92183:
33902
+ /***/ 21750:
33845
33903
  /***/ ((__unused_webpack_module, exports) => {
33846
33904
 
33847
33905
  "use strict";
@@ -33865,7 +33923,7 @@ exports["default"] = getBuffer;
33865
33923
 
33866
33924
  /***/ }),
33867
33925
 
33868
- /***/ 79308:
33926
+ /***/ 99678:
33869
33927
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
33870
33928
 
33871
33929
  "use strict";
@@ -33877,7 +33935,7 @@ exports["default"] = (body) => is_1.default.nodeStream(body) && is_1.default.fun
33877
33935
 
33878
33936
  /***/ }),
33879
33937
 
33880
- /***/ 78904:
33938
+ /***/ 67930:
33881
33939
  /***/ ((__unused_webpack_module, exports) => {
33882
33940
 
33883
33941
  "use strict";
@@ -33893,7 +33951,7 @@ exports.isResponseOk = (response) => {
33893
33951
 
33894
33952
  /***/ }),
33895
33953
 
33896
- /***/ 23377:
33954
+ /***/ 84045:
33897
33955
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
33898
33956
 
33899
33957
  "use strict";
@@ -33954,7 +34012,7 @@ exports["default"] = (origin, options) => {
33954
34012
 
33955
34013
  /***/ }),
33956
34014
 
33957
- /***/ 78608:
34015
+ /***/ 47538:
33958
34016
  /***/ ((__unused_webpack_module, exports) => {
33959
34017
 
33960
34018
  "use strict";
@@ -33979,7 +34037,7 @@ exports["default"] = default_1;
33979
34037
 
33980
34038
  /***/ }),
33981
34039
 
33982
- /***/ 16000:
34040
+ /***/ 69012:
33983
34041
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
33984
34042
 
33985
34043
  "use strict";
@@ -33987,7 +34045,7 @@ exports["default"] = default_1;
33987
34045
  Object.defineProperty(exports, "__esModule", ({ value: true }));
33988
34046
  exports.TimeoutError = void 0;
33989
34047
  const net = __webpack_require__(41808);
33990
- const unhandle_1 = __webpack_require__(56191);
34048
+ const unhandle_1 = __webpack_require__(47884);
33991
34049
  const reentry = Symbol('reentry');
33992
34050
  const noop = () => { };
33993
34051
  class TimeoutError extends Error {
@@ -34108,7 +34166,7 @@ exports["default"] = (request, delays, options) => {
34108
34166
 
34109
34167
  /***/ }),
34110
34168
 
34111
- /***/ 56191:
34169
+ /***/ 47884:
34112
34170
  /***/ ((__unused_webpack_module, exports) => {
34113
34171
 
34114
34172
  "use strict";
@@ -34138,7 +34196,7 @@ exports["default"] = () => {
34138
34196
 
34139
34197
  /***/ }),
34140
34198
 
34141
- /***/ 333:
34199
+ /***/ 22326:
34142
34200
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
34143
34201
 
34144
34202
  "use strict";
@@ -34170,7 +34228,7 @@ exports["default"] = (url) => {
34170
34228
 
34171
34229
  /***/ }),
34172
34230
 
34173
- /***/ 24052:
34231
+ /***/ 37954:
34174
34232
  /***/ ((__unused_webpack_module, exports) => {
34175
34233
 
34176
34234
  "use strict";
@@ -34207,7 +34265,7 @@ exports["default"] = WeakableMap;
34207
34265
 
34208
34266
  /***/ }),
34209
34267
 
34210
- /***/ 91864:
34268
+ /***/ 79613:
34211
34269
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
34212
34270
 
34213
34271
  "use strict";
@@ -34225,10 +34283,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
34225
34283
  Object.defineProperty(exports, "__esModule", ({ value: true }));
34226
34284
  exports.defaultHandler = void 0;
34227
34285
  const is_1 = __webpack_require__(49460);
34228
- const as_promise_1 = __webpack_require__(13294);
34229
- const create_rejection_1 = __webpack_require__(83166);
34230
- const core_1 = __webpack_require__(30105);
34231
- const deep_freeze_1 = __webpack_require__(60348);
34286
+ const as_promise_1 = __webpack_require__(93285);
34287
+ const create_rejection_1 = __webpack_require__(39026);
34288
+ const core_1 = __webpack_require__(40753);
34289
+ const deep_freeze_1 = __webpack_require__(77116);
34232
34290
  const errors = {
34233
34291
  RequestError: as_promise_1.RequestError,
34234
34292
  CacheError: as_promise_1.CacheError,
@@ -34450,12 +34508,12 @@ const create = (defaults) => {
34450
34508
  return got;
34451
34509
  };
34452
34510
  exports["default"] = create;
34453
- __exportStar(__webpack_require__(63353), exports);
34511
+ __exportStar(__webpack_require__(37335), exports);
34454
34512
 
34455
34513
 
34456
34514
  /***/ }),
34457
34515
 
34458
- /***/ 64419:
34516
+ /***/ 98351:
34459
34517
  /***/ (function(module, exports, __webpack_require__) {
34460
34518
 
34461
34519
  "use strict";
@@ -34472,7 +34530,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
34472
34530
  };
34473
34531
  Object.defineProperty(exports, "__esModule", ({ value: true }));
34474
34532
  const url_1 = __webpack_require__(57310);
34475
- const create_1 = __webpack_require__(91864);
34533
+ const create_1 = __webpack_require__(79613);
34476
34534
  const defaults = {
34477
34535
  options: {
34478
34536
  method: 'GET',
@@ -34589,13 +34647,13 @@ exports["default"] = got;
34589
34647
  module.exports = got;
34590
34648
  module.exports["default"] = got;
34591
34649
  module.exports.__esModule = true; // Workaround for TS issue: https://github.com/sindresorhus/got/pull/1267
34592
- __exportStar(__webpack_require__(91864), exports);
34593
- __exportStar(__webpack_require__(13294), exports);
34650
+ __exportStar(__webpack_require__(79613), exports);
34651
+ __exportStar(__webpack_require__(93285), exports);
34594
34652
 
34595
34653
 
34596
34654
  /***/ }),
34597
34655
 
34598
- /***/ 63353:
34656
+ /***/ 37335:
34599
34657
  /***/ ((__unused_webpack_module, exports) => {
34600
34658
 
34601
34659
  "use strict";
@@ -34605,7 +34663,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
34605
34663
 
34606
34664
  /***/ }),
34607
34665
 
34608
- /***/ 60348:
34666
+ /***/ 77116:
34609
34667
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
34610
34668
 
34611
34669
  "use strict";
@@ -34625,7 +34683,7 @@ exports["default"] = deepFreeze;
34625
34683
 
34626
34684
  /***/ }),
34627
34685
 
34628
- /***/ 75302:
34686
+ /***/ 45907:
34629
34687
  /***/ ((__unused_webpack_module, exports) => {
34630
34688
 
34631
34689
  "use strict";
@@ -35116,7 +35174,7 @@ function retry () {
35116
35174
  /***/ 31563:
35117
35175
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
35118
35176
 
35119
- var Stream = __webpack_require__(12781).Stream
35177
+ var Stream = (__webpack_require__(12781).Stream)
35120
35178
 
35121
35179
  module.exports = legacy
35122
35180
 
@@ -35608,7 +35666,7 @@ var _handlebarsRuntime2 = _interopRequireDefault(_handlebarsRuntime);
35608
35666
 
35609
35667
  // Compiler imports
35610
35668
 
35611
- var _handlebarsCompilerAst = __webpack_require__(68725);
35669
+ var _handlebarsCompilerAst = __webpack_require__(43753);
35612
35670
 
35613
35671
  var _handlebarsCompilerAst2 = _interopRequireDefault(_handlebarsCompilerAst);
35614
35672
 
@@ -35863,7 +35921,7 @@ exports.logger = _logger2['default'];
35863
35921
 
35864
35922
  /***/ }),
35865
35923
 
35866
- /***/ 68725:
35924
+ /***/ 43753:
35867
35925
  /***/ ((module, exports) => {
35868
35926
 
35869
35927
  "use strict";
@@ -36160,7 +36218,7 @@ var _exception2 = _interopRequireDefault(_exception);
36160
36218
 
36161
36219
  var _utils = __webpack_require__(35617);
36162
36220
 
36163
- var _ast = __webpack_require__(68725);
36221
+ var _ast = __webpack_require__(43753);
36164
36222
 
36165
36223
  var _ast2 = _interopRequireDefault(_ast);
36166
36224
 
@@ -40747,7 +40805,7 @@ function appendContextPath(contextPath, id) {
40747
40805
 
40748
40806
  // var local = handlebars.create();
40749
40807
 
40750
- var handlebars = __webpack_require__(76157)["default"];
40808
+ var handlebars = (__webpack_require__(76157)["default"]);
40751
40809
 
40752
40810
  var printer = __webpack_require__(84372);
40753
40811
  handlebars.PrintVisitor = printer.PrintVisitor;
@@ -43457,7 +43515,7 @@ return{name,number,description,supported,action,forced,standard};
43457
43515
 
43458
43516
  "use strict";
43459
43517
 
43460
- var Buffer = __webpack_require__(25311).Buffer;
43518
+ var Buffer = (__webpack_require__(25311).Buffer);
43461
43519
 
43462
43520
  // Multibyte codec. In this scheme, a character is represented by 1 or more bytes.
43463
43521
  // Our codec supports UTF-16 surrogates, extensions for GB18030 and unicode sequences.
@@ -44111,7 +44169,7 @@ module.exports = {
44111
44169
  // GBK (~22000 chars) is an extension of CP936 that added user-mapped chars and some other.
44112
44170
  'gbk': {
44113
44171
  type: '_dbcs',
44114
- table: function() { return __webpack_require__(98195).concat(__webpack_require__(98901)) },
44172
+ table: function() { return (__webpack_require__(98195).concat)(__webpack_require__(98901)) },
44115
44173
  },
44116
44174
  'xgbk': 'gbk',
44117
44175
  'isoir58': 'gbk',
@@ -44123,7 +44181,7 @@ module.exports = {
44123
44181
  // http://www.khngai.com/chinese/charmap/tblgbk.php?page=0
44124
44182
  'gb18030': {
44125
44183
  type: '_dbcs',
44126
- table: function() { return __webpack_require__(98195).concat(__webpack_require__(98901)) },
44184
+ table: function() { return (__webpack_require__(98195).concat)(__webpack_require__(98901)) },
44127
44185
  gb18030: function() { return __webpack_require__(184) },
44128
44186
  encodeSkipVals: [0x80],
44129
44187
  encodeAdd: {'€': 0xA2E3},
@@ -44187,7 +44245,7 @@ module.exports = {
44187
44245
  'big5': 'big5hkscs',
44188
44246
  'big5hkscs': {
44189
44247
  type: '_dbcs',
44190
- table: function() { return __webpack_require__(85474).concat(__webpack_require__(86047)) },
44248
+ table: function() { return (__webpack_require__(85474).concat)(__webpack_require__(86047)) },
44191
44249
  encodeSkipVals: [0xa2cc],
44192
44250
  },
44193
44251
 
@@ -44234,7 +44292,7 @@ for (var i = 0; i < modules.length; i++) {
44234
44292
 
44235
44293
  "use strict";
44236
44294
 
44237
- var Buffer = __webpack_require__(25311).Buffer;
44295
+ var Buffer = (__webpack_require__(25311).Buffer);
44238
44296
 
44239
44297
  // Export Node.js internal encodings.
44240
44298
 
@@ -44281,7 +44339,7 @@ InternalCodec.prototype.decoder = InternalDecoder;
44281
44339
  //------------------------------------------------------------------------------
44282
44340
 
44283
44341
  // We use node.js internal decoder. Its signature is the same as ours.
44284
- var StringDecoder = __webpack_require__(71576).StringDecoder;
44342
+ var StringDecoder = (__webpack_require__(71576).StringDecoder);
44285
44343
 
44286
44344
  if (!StringDecoder.prototype.end) // Node v0.8 doesn't have this method.
44287
44345
  StringDecoder.prototype.end = function() {};
@@ -44430,7 +44488,7 @@ InternalDecoderCesu8.prototype.end = function() {
44430
44488
 
44431
44489
  "use strict";
44432
44490
 
44433
- var Buffer = __webpack_require__(25311).Buffer;
44491
+ var Buffer = (__webpack_require__(25311).Buffer);
44434
44492
 
44435
44493
  // Single-byte codec. Needs a 'chars' string parameter that contains 256 or 128 chars that
44436
44494
  // correspond to encoded bytes (if 128 - then lower half is ASCII).
@@ -45150,7 +45208,7 @@ module.exports = {
45150
45208
 
45151
45209
  "use strict";
45152
45210
 
45153
- var Buffer = __webpack_require__(25311).Buffer;
45211
+ var Buffer = (__webpack_require__(25311).Buffer);
45154
45212
 
45155
45213
  // Note: UTF16-LE (or UCS2) codec is Node.js native. See encodings/internal.js
45156
45214
 
@@ -45335,7 +45393,7 @@ function detectEncoding(buf, defaultEncoding) {
45335
45393
 
45336
45394
  "use strict";
45337
45395
 
45338
- var Buffer = __webpack_require__(25311).Buffer;
45396
+ var Buffer = (__webpack_require__(25311).Buffer);
45339
45397
 
45340
45398
  // UTF-7 codec, according to https://tools.ietf.org/html/rfc2152
45341
45399
  // See also below a UTF-7-IMAP codec, according to http://tools.ietf.org/html/rfc3501#section-5.1.3
@@ -45693,7 +45751,7 @@ StripBOMWrapper.prototype.end = function() {
45693
45751
 
45694
45752
  "use strict";
45695
45753
 
45696
- var Buffer = __webpack_require__(14300).Buffer;
45754
+ var Buffer = (__webpack_require__(14300).Buffer);
45697
45755
  // Note: not polyfilled with safer-buffer on a purpose, as overrides Buffer
45698
45756
 
45699
45757
  // == Extend Node primitives to use iconv-lite =================================
@@ -45726,7 +45784,7 @@ module.exports = function (iconv) {
45726
45784
  }
45727
45785
 
45728
45786
  // -- SlowBuffer -----------------------------------------------------------
45729
- var SlowBuffer = __webpack_require__(14300).SlowBuffer;
45787
+ var SlowBuffer = (__webpack_require__(14300).SlowBuffer);
45730
45788
 
45731
45789
  original.SlowBufferToString = SlowBuffer.prototype.toString;
45732
45790
  SlowBuffer.prototype.toString = function(encoding, start, end) {
@@ -45866,7 +45924,7 @@ module.exports = function (iconv) {
45866
45924
 
45867
45925
  // -- Readable -------------------------------------------------------------
45868
45926
  if (iconv.supportsStreams) {
45869
- var Readable = __webpack_require__(12781).Readable;
45927
+ var Readable = (__webpack_require__(12781).Readable);
45870
45928
 
45871
45929
  original.ReadableSetEncoding = Readable.prototype.setEncoding;
45872
45930
  Readable.prototype.setEncoding = function setEncoding(enc, options) {
@@ -45889,7 +45947,7 @@ module.exports = function (iconv) {
45889
45947
 
45890
45948
  delete Buffer.isNativeEncoding;
45891
45949
 
45892
- var SlowBuffer = __webpack_require__(14300).SlowBuffer;
45950
+ var SlowBuffer = (__webpack_require__(14300).SlowBuffer);
45893
45951
 
45894
45952
  SlowBuffer.prototype.toString = original.SlowBufferToString;
45895
45953
  SlowBuffer.prototype.write = original.SlowBufferWrite;
@@ -45900,7 +45958,7 @@ module.exports = function (iconv) {
45900
45958
  Buffer.prototype.write = original.BufferWrite;
45901
45959
 
45902
45960
  if (iconv.supportsStreams) {
45903
- var Readable = __webpack_require__(12781).Readable;
45961
+ var Readable = (__webpack_require__(12781).Readable);
45904
45962
 
45905
45963
  Readable.prototype.setEncoding = original.ReadableSetEncoding;
45906
45964
  delete Readable.prototype.collect;
@@ -45921,7 +45979,7 @@ module.exports = function (iconv) {
45921
45979
 
45922
45980
  // Some environments don't have global Buffer (e.g. React Native).
45923
45981
  // Solution would be installing npm modules "buffer" and "stream" explicitly.
45924
- var Buffer = __webpack_require__(25311).Buffer;
45982
+ var Buffer = (__webpack_require__(25311).Buffer);
45925
45983
 
45926
45984
  var bomHandling = __webpack_require__(53988),
45927
45985
  iconv = module.exports;
@@ -46078,8 +46136,8 @@ if (false) {}
46078
46136
  "use strict";
46079
46137
 
46080
46138
 
46081
- var Buffer = __webpack_require__(14300).Buffer,
46082
- Transform = __webpack_require__(12781).Transform;
46139
+ var Buffer = (__webpack_require__(14300).Buffer),
46140
+ Transform = (__webpack_require__(12781).Transform);
46083
46141
 
46084
46142
 
46085
46143
  // == Exports ==================================================================
@@ -59321,7 +59379,7 @@ function isNumber (x) {
59321
59379
 
59322
59380
  /***/ }),
59323
59381
 
59324
- /***/ 39357:
59382
+ /***/ 81675:
59325
59383
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
59326
59384
 
59327
59385
  "use strict";
@@ -59333,7 +59391,7 @@ const proc = typeof process === 'object' && process ? process : {
59333
59391
  const EE = __webpack_require__(82361)
59334
59392
  const Stream = __webpack_require__(12781)
59335
59393
  const Yallist = __webpack_require__(17590)
59336
- const SD = __webpack_require__(71576).StringDecoder
59394
+ const SD = (__webpack_require__(71576).StringDecoder)
59337
59395
 
59338
59396
  const EOF = Symbol('EOF')
59339
59397
  const MAYBE_EMIT_END = Symbol('maybeEmitEnd')
@@ -59492,7 +59550,12 @@ module.exports = class Minipass extends Stream {
59492
59550
  // because we're mid-write, so that'd be bad.
59493
59551
  if (this[BUFFERLENGTH] !== 0)
59494
59552
  this[FLUSH](true)
59495
- this.emit('data', chunk)
59553
+
59554
+ // if we are still flowing after flushing the buffer we can emit the
59555
+ // chunk otherwise we have to buffer it.
59556
+ this.flowing
59557
+ ? this.emit('data', chunk)
59558
+ : this[BUFFERPUSH](chunk)
59496
59559
  } else
59497
59560
  this[BUFFERPUSH](chunk)
59498
59561
 
@@ -59891,7 +59954,7 @@ module.exports = class Minipass extends Stream {
59891
59954
  // Node v6 didn't export this, so we just hard code the version and rely
59892
59955
  // on all the other hard-coded values from zlib v4736. When node v6
59893
59956
  // support drops, we can just export the realZlibConstants object.
59894
- const realZlibConstants = __webpack_require__(59796).constants ||
59957
+ const realZlibConstants = (__webpack_require__(59796).constants) ||
59895
59958
  /* istanbul ignore next */ { ZLIB_VERNUM: 4736 }
59896
59959
 
59897
59960
  module.exports = Object.freeze(Object.assign(Object.create(null), {
@@ -60013,11 +60076,11 @@ module.exports = Object.freeze(Object.assign(Object.create(null), {
60013
60076
 
60014
60077
 
60015
60078
  const assert = __webpack_require__(39491)
60016
- const Buffer = __webpack_require__(14300).Buffer
60079
+ const Buffer = (__webpack_require__(14300).Buffer)
60017
60080
  const realZlib = __webpack_require__(59796)
60018
60081
 
60019
60082
  const constants = exports.constants = __webpack_require__(14473)
60020
- const Minipass = __webpack_require__(39357)
60083
+ const Minipass = __webpack_require__(81675)
60021
60084
 
60022
60085
  const OriginalBufferConcat = Buffer.concat
60023
60086
 
@@ -61911,7 +61974,7 @@ module.exports.CancelError = CancelError;
61911
61974
 
61912
61975
  const {Agent: HttpAgent} = __webpack_require__(13685);
61913
61976
  const {Agent: HttpsAgent} = __webpack_require__(95687);
61914
- const got = __webpack_require__(64419);
61977
+ const got = __webpack_require__(98351);
61915
61978
  const registryUrl = __webpack_require__(99399);
61916
61979
  const registryAuthToken = __webpack_require__(5086);
61917
61980
  const semver = __webpack_require__(20962);
@@ -62299,7 +62362,7 @@ module.exports = QuickLRU;
62299
62362
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
62300
62363
 
62301
62364
  var cc = __webpack_require__(81769)
62302
- var join = __webpack_require__(71017).join
62365
+ var join = (__webpack_require__(71017).join)
62303
62366
  var deepExtend = __webpack_require__(81678)
62304
62367
  var etc = '/etc'
62305
62368
  var win = process.platform === "win32"
@@ -62818,7 +62881,7 @@ var Duplex;
62818
62881
  Readable.ReadableState = ReadableState;
62819
62882
  /*<replacement>*/
62820
62883
 
62821
- var EE = __webpack_require__(82361).EventEmitter;
62884
+ var EE = (__webpack_require__(82361).EventEmitter);
62822
62885
 
62823
62886
  var EElistenerCount = function EElistenerCount(emitter, type) {
62824
62887
  return emitter.listeners(type).length;
@@ -62832,7 +62895,7 @@ var Stream = __webpack_require__(81793);
62832
62895
  /*</replacement>*/
62833
62896
 
62834
62897
 
62835
- var Buffer = __webpack_require__(14300).Buffer;
62898
+ var Buffer = (__webpack_require__(14300).Buffer);
62836
62899
 
62837
62900
  var OurUint8Array = global.Uint8Array || function () {};
62838
62901
 
@@ -62865,7 +62928,7 @@ var destroyImpl = __webpack_require__(43592);
62865
62928
  var _require = __webpack_require__(75694),
62866
62929
  getHighWaterMark = _require.getHighWaterMark;
62867
62930
 
62868
- var _require$codes = __webpack_require__(39891)/* .codes */ .q,
62931
+ var _require$codes = (__webpack_require__(39891)/* .codes */ .q),
62869
62932
  ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE,
62870
62933
  ERR_STREAM_PUSH_AFTER_EOF = _require$codes.ERR_STREAM_PUSH_AFTER_EOF,
62871
62934
  ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,
@@ -62949,7 +63012,7 @@ function ReadableState(options, stream, isDuplex) {
62949
63012
  this.encoding = null;
62950
63013
 
62951
63014
  if (options.encoding) {
62952
- if (!StringDecoder) StringDecoder = __webpack_require__(51688)/* .StringDecoder */ .s;
63015
+ if (!StringDecoder) StringDecoder = (__webpack_require__(51688)/* .StringDecoder */ .s);
62953
63016
  this.decoder = new StringDecoder(options.encoding);
62954
63017
  this.encoding = options.encoding;
62955
63018
  }
@@ -63111,7 +63174,7 @@ Readable.prototype.isPaused = function () {
63111
63174
 
63112
63175
 
63113
63176
  Readable.prototype.setEncoding = function (enc) {
63114
- if (!StringDecoder) StringDecoder = __webpack_require__(51688)/* .StringDecoder */ .s;
63177
+ if (!StringDecoder) StringDecoder = (__webpack_require__(51688)/* .StringDecoder */ .s);
63115
63178
  var decoder = new StringDecoder(enc);
63116
63179
  this._readableState.decoder = decoder; // If setEncoding(null), decoder.encoding equals utf8
63117
63180
 
@@ -63983,7 +64046,7 @@ function indexOf(xs, x) {
63983
64046
 
63984
64047
  module.exports = Transform;
63985
64048
 
63986
- var _require$codes = __webpack_require__(39891)/* .codes */ .q,
64049
+ var _require$codes = (__webpack_require__(39891)/* .codes */ .q),
63987
64050
  ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,
63988
64051
  ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK,
63989
64052
  ERR_TRANSFORM_ALREADY_TRANSFORMING = _require$codes.ERR_TRANSFORM_ALREADY_TRANSFORMING,
@@ -64195,7 +64258,7 @@ var Stream = __webpack_require__(81793);
64195
64258
  /*</replacement>*/
64196
64259
 
64197
64260
 
64198
- var Buffer = __webpack_require__(14300).Buffer;
64261
+ var Buffer = (__webpack_require__(14300).Buffer);
64199
64262
 
64200
64263
  var OurUint8Array = global.Uint8Array || function () {};
64201
64264
 
@@ -64212,7 +64275,7 @@ var destroyImpl = __webpack_require__(43592);
64212
64275
  var _require = __webpack_require__(75694),
64213
64276
  getHighWaterMark = _require.getHighWaterMark;
64214
64277
 
64215
- var _require$codes = __webpack_require__(39891)/* .codes */ .q,
64278
+ var _require$codes = (__webpack_require__(39891)/* .codes */ .q),
64216
64279
  ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE,
64217
64280
  ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED,
64218
64281
  ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK,
@@ -65377,7 +65440,7 @@ module.exports = {
65377
65440
  // permission from the author, Mathias Buus (@mafintosh).
65378
65441
 
65379
65442
 
65380
- var ERR_STREAM_PREMATURE_CLOSE = __webpack_require__(39891)/* .codes.ERR_STREAM_PREMATURE_CLOSE */ .q.ERR_STREAM_PREMATURE_CLOSE;
65443
+ var ERR_STREAM_PREMATURE_CLOSE = (__webpack_require__(39891)/* .codes.ERR_STREAM_PREMATURE_CLOSE */ .q.ERR_STREAM_PREMATURE_CLOSE);
65381
65444
 
65382
65445
  function once(callback) {
65383
65446
  var called = false;
@@ -65496,7 +65559,7 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
65496
65559
 
65497
65560
  function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
65498
65561
 
65499
- var ERR_INVALID_ARG_TYPE = __webpack_require__(39891)/* .codes.ERR_INVALID_ARG_TYPE */ .q.ERR_INVALID_ARG_TYPE;
65562
+ var ERR_INVALID_ARG_TYPE = (__webpack_require__(39891)/* .codes.ERR_INVALID_ARG_TYPE */ .q.ERR_INVALID_ARG_TYPE);
65500
65563
 
65501
65564
  function from(Readable, iterable, opts) {
65502
65565
  var iterator;
@@ -65570,7 +65633,7 @@ function once(callback) {
65570
65633
  };
65571
65634
  }
65572
65635
 
65573
- var _require$codes = __webpack_require__(39891)/* .codes */ .q,
65636
+ var _require$codes = (__webpack_require__(39891)/* .codes */ .q),
65574
65637
  ERR_MISSING_ARGS = _require$codes.ERR_MISSING_ARGS,
65575
65638
  ERR_STREAM_DESTROYED = _require$codes.ERR_STREAM_DESTROYED;
65576
65639
 
@@ -65661,7 +65724,7 @@ module.exports = pipeline;
65661
65724
  "use strict";
65662
65725
 
65663
65726
 
65664
- var ERR_INVALID_OPT_VALUE = __webpack_require__(39891)/* .codes.ERR_INVALID_OPT_VALUE */ .q.ERR_INVALID_OPT_VALUE;
65727
+ var ERR_INVALID_OPT_VALUE = (__webpack_require__(39891)/* .codes.ERR_INVALID_OPT_VALUE */ .q.ERR_INVALID_OPT_VALUE);
65665
65728
 
65666
65729
  function highWaterMarkFrom(options, isDuplex, duplexKey) {
65667
65730
  return options.highWaterMark != null ? options.highWaterMark : isDuplex ? options[duplexKey] : null;
@@ -66043,7 +66106,7 @@ module.exports = (options = {}, connect = tls.connect) => new Promise((resolve,
66043
66106
  "use strict";
66044
66107
 
66045
66108
 
66046
- const Readable = __webpack_require__(12781).Readable;
66109
+ const Readable = (__webpack_require__(12781).Readable);
66047
66110
  const lowercaseKeys = __webpack_require__(5974);
66048
66111
 
66049
66112
  class Response extends Readable {
@@ -66085,7 +66148,7 @@ module.exports = Response;
66085
66148
  "use strict";
66086
66149
 
66087
66150
  const onetime = __webpack_require__(26401);
66088
- const signalExit = __webpack_require__(41975);
66151
+ const signalExit = __webpack_require__(66217);
66089
66152
 
66090
66153
  module.exports = onetime(() => {
66091
66154
  signalExit(() => {
@@ -81655,10 +81718,10 @@ module.exports = {
81655
81718
  re: internalRe.re,
81656
81719
  src: internalRe.src,
81657
81720
  tokens: internalRe.t,
81658
- SEMVER_SPEC_VERSION: __webpack_require__(19359).SEMVER_SPEC_VERSION,
81721
+ SEMVER_SPEC_VERSION: (__webpack_require__(19359).SEMVER_SPEC_VERSION),
81659
81722
  SemVer: __webpack_require__(87250),
81660
- compareIdentifiers: __webpack_require__(97070).compareIdentifiers,
81661
- rcompareIdentifiers: __webpack_require__(97070).rcompareIdentifiers,
81723
+ compareIdentifiers: (__webpack_require__(97070).compareIdentifiers),
81724
+ rcompareIdentifiers: (__webpack_require__(97070).rcompareIdentifiers),
81662
81725
  parse: __webpack_require__(86425),
81663
81726
  valid: __webpack_require__(12406),
81664
81727
  clean: __webpack_require__(43075),
@@ -82581,7 +82644,7 @@ module.exports = /^#!(.*)/;
82581
82644
 
82582
82645
  /***/ }),
82583
82646
 
82584
- /***/ 41975:
82647
+ /***/ 66217:
82585
82648
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
82586
82649
 
82587
82650
  // Note: since nyc uses this module to output coverage, any lines
@@ -82589,12 +82652,26 @@ module.exports = /^#!(.*)/;
82589
82652
  // ignored, since we can never get coverage for them.
82590
82653
  // grab a reference to node's real process object right away
82591
82654
  var process = global.process
82655
+
82656
+ const processOk = function (process) {
82657
+ return process &&
82658
+ typeof process === 'object' &&
82659
+ typeof process.removeListener === 'function' &&
82660
+ typeof process.emit === 'function' &&
82661
+ typeof process.reallyExit === 'function' &&
82662
+ typeof process.listeners === 'function' &&
82663
+ typeof process.kill === 'function' &&
82664
+ typeof process.pid === 'number' &&
82665
+ typeof process.on === 'function'
82666
+ }
82667
+
82592
82668
  // some kind of non-node environment, just no-op
82593
- if (typeof process !== 'object' || !process) {
82669
+ /* istanbul ignore if */
82670
+ if (!processOk(process)) {
82594
82671
  module.exports = function () {}
82595
82672
  } else {
82596
82673
  var assert = __webpack_require__(39491)
82597
- var signals = __webpack_require__(69394)
82674
+ var signals = __webpack_require__(16869)
82598
82675
  var isWin = /^win/i.test(process.platform)
82599
82676
 
82600
82677
  var EE = __webpack_require__(82361)
@@ -82622,7 +82699,8 @@ if (typeof process !== 'object' || !process) {
82622
82699
  }
82623
82700
 
82624
82701
  module.exports = function (cb, opts) {
82625
- if (global.process !== process) {
82702
+ /* istanbul ignore if */
82703
+ if (!processOk(global.process)) {
82626
82704
  return
82627
82705
  }
82628
82706
  assert.equal(typeof cb, 'function', 'a callback must be provided for exit handler')
@@ -82649,7 +82727,7 @@ if (typeof process !== 'object' || !process) {
82649
82727
  }
82650
82728
 
82651
82729
  var unload = function unload () {
82652
- if (!loaded || global.process !== process) {
82730
+ if (!loaded || !processOk(global.process)) {
82653
82731
  return
82654
82732
  }
82655
82733
  loaded = false
@@ -82666,6 +82744,7 @@ if (typeof process !== 'object' || !process) {
82666
82744
  module.exports.unload = unload
82667
82745
 
82668
82746
  var emit = function emit (event, code, signal) {
82747
+ /* istanbul ignore if */
82669
82748
  if (emitter.emitted[event]) {
82670
82749
  return
82671
82750
  }
@@ -82677,7 +82756,8 @@ if (typeof process !== 'object' || !process) {
82677
82756
  var sigListeners = {}
82678
82757
  signals.forEach(function (sig) {
82679
82758
  sigListeners[sig] = function listener () {
82680
- if (process !== global.process) {
82759
+ /* istanbul ignore if */
82760
+ if (!processOk(global.process)) {
82681
82761
  return
82682
82762
  }
82683
82763
  // If there are no other listeners, an exit is coming!
@@ -82696,6 +82776,7 @@ if (typeof process !== 'object' || !process) {
82696
82776
  // so use a supported signal instead
82697
82777
  sig = 'SIGINT'
82698
82778
  }
82779
+ /* istanbul ignore next */
82699
82780
  process.kill(process.pid, sig)
82700
82781
  }
82701
82782
  }
@@ -82708,7 +82789,7 @@ if (typeof process !== 'object' || !process) {
82708
82789
  var loaded = false
82709
82790
 
82710
82791
  var load = function load () {
82711
- if (loaded || process !== global.process) {
82792
+ if (loaded || !processOk(global.process)) {
82712
82793
  return
82713
82794
  }
82714
82795
  loaded = true
@@ -82735,10 +82816,11 @@ if (typeof process !== 'object' || !process) {
82735
82816
 
82736
82817
  var originalProcessReallyExit = process.reallyExit
82737
82818
  var processReallyExit = function processReallyExit (code) {
82738
- if (process !== global.process) {
82819
+ /* istanbul ignore if */
82820
+ if (!processOk(global.process)) {
82739
82821
  return
82740
82822
  }
82741
- process.exitCode = code || 0
82823
+ process.exitCode = code || /* istanbul ignore next */ 0
82742
82824
  emit('exit', process.exitCode, null)
82743
82825
  /* istanbul ignore next */
82744
82826
  emit('afterexit', process.exitCode, null)
@@ -82748,14 +82830,17 @@ if (typeof process !== 'object' || !process) {
82748
82830
 
82749
82831
  var originalProcessEmit = process.emit
82750
82832
  var processEmit = function processEmit (ev, arg) {
82751
- if (ev === 'exit' && process === global.process) {
82833
+ if (ev === 'exit' && processOk(global.process)) {
82834
+ /* istanbul ignore else */
82752
82835
  if (arg !== undefined) {
82753
82836
  process.exitCode = arg
82754
82837
  }
82755
82838
  var ret = originalProcessEmit.apply(this, arguments)
82839
+ /* istanbul ignore next */
82756
82840
  emit('exit', process.exitCode, null)
82757
82841
  /* istanbul ignore next */
82758
82842
  emit('afterexit', process.exitCode, null)
82843
+ /* istanbul ignore next */
82759
82844
  return ret
82760
82845
  } else {
82761
82846
  return originalProcessEmit.apply(this, arguments)
@@ -82766,7 +82851,7 @@ if (typeof process !== 'object' || !process) {
82766
82851
 
82767
82852
  /***/ }),
82768
82853
 
82769
- /***/ 69394:
82854
+ /***/ 16869:
82770
82855
  /***/ ((module) => {
82771
82856
 
82772
82857
  // This is not the set of all possible signals.
@@ -82910,7 +82995,7 @@ module.exports["default"] = stringWidth;
82910
82995
 
82911
82996
  /*<replacement>*/
82912
82997
 
82913
- var Buffer = __webpack_require__(76834).Buffer;
82998
+ var Buffer = (__webpack_require__(76834).Buffer);
82914
82999
  /*</replacement>*/
82915
83000
 
82916
83001
  var isEncoding = Buffer.isEncoding || function (encoding) {
@@ -83732,7 +83817,7 @@ module.exports = !fMapEnabled ? () => 'w'
83732
83817
  // (Also, check header.needPax to see if it needs a pax header.)
83733
83818
 
83734
83819
  const types = __webpack_require__(70096)
83735
- const pathModule = __webpack_require__(71017).posix
83820
+ const pathModule = (__webpack_require__(71017).posix)
83736
83821
  const large = __webpack_require__(82011)
83737
83822
 
83738
83823
  const SLURP = Symbol('slurp')
@@ -84614,7 +84699,7 @@ class PackJob {
84614
84699
  }
84615
84700
  }
84616
84701
 
84617
- const MiniPass = __webpack_require__(39357)
84702
+ const MiniPass = __webpack_require__(81675)
84618
84703
  const zlib = __webpack_require__(95289)
84619
84704
  const ReadEntry = __webpack_require__(66523)
84620
84705
  const WriteEntry = __webpack_require__(56004)
@@ -85791,7 +85876,7 @@ module.exports = Pax
85791
85876
 
85792
85877
  "use strict";
85793
85878
 
85794
- const MiniPass = __webpack_require__(39357)
85879
+ const MiniPass = __webpack_require__(81675)
85795
85880
  const normPath = __webpack_require__(41935)
85796
85881
 
85797
85882
  const SLURP = Symbol('slurp')
@@ -86129,7 +86214,7 @@ const addFilesAsync = (p, files) => {
86129
86214
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
86130
86215
 
86131
86216
  // unix absolute paths are also absolute on win32, so we use this for both
86132
- const { isAbsolute, parse } = __webpack_require__(71017).win32
86217
+ const { isAbsolute, parse } = (__webpack_require__(71017).win32)
86133
86218
 
86134
86219
  // returns [root, stripped]
86135
86220
  // Note that windows will think that //x/y/z/a has a "root" of //x/y, and in
@@ -87222,7 +87307,7 @@ module.exports = {
87222
87307
 
87223
87308
  "use strict";
87224
87309
 
87225
- const MiniPass = __webpack_require__(39357)
87310
+ const MiniPass = __webpack_require__(81675)
87226
87311
  const Pax = __webpack_require__(15674)
87227
87312
  const Header = __webpack_require__(13391)
87228
87313
  const fs = __webpack_require__(57147)
@@ -89419,6 +89504,59 @@ function getObjKeyMap(obj, prefix = '') {
89419
89504
 
89420
89505
  /***/ }),
89421
89506
 
89507
+ /***/ 32746:
89508
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
89509
+
89510
+ "use strict";
89511
+
89512
+
89513
+ Object.defineProperty(exports, "__esModule", ({
89514
+ value: true
89515
+ }));
89516
+
89517
+ var _project = __webpack_require__(40542);
89518
+
89519
+ Object.keys(_project).forEach(function (key) {
89520
+ if (key === "default" || key === "__esModule") return;
89521
+ if (key in exports && exports[key] === _project[key]) return;
89522
+ Object.defineProperty(exports, key, {
89523
+ enumerable: true,
89524
+ get: function () {
89525
+ return _project[key];
89526
+ }
89527
+ });
89528
+ });
89529
+
89530
+ /***/ }),
89531
+
89532
+ /***/ 40542:
89533
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
89534
+
89535
+ "use strict";
89536
+
89537
+
89538
+ Object.defineProperty(exports, "__esModule", ({
89539
+ value: true
89540
+ }));
89541
+ exports.BaseSchemas = exports.BaseSchema = exports.BaseDefaultConfig = void 0;
89542
+
89543
+ var _common = __webpack_require__(25523);
89544
+
89545
+ const BaseSchemas = [_common.PackageManagerSchema];
89546
+ exports.BaseSchemas = BaseSchemas;
89547
+ const BaseSchema = {
89548
+ key: 'base',
89549
+ isObject: true,
89550
+ items: BaseSchemas
89551
+ };
89552
+ exports.BaseSchema = BaseSchema;
89553
+ const BaseDefaultConfig = {
89554
+ packageManager: _common.PackageManager.Pnpm
89555
+ };
89556
+ exports.BaseDefaultConfig = BaseDefaultConfig;
89557
+
89558
+ /***/ }),
89559
+
89422
89560
  /***/ 34069:
89423
89561
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
89424
89562
 
@@ -89428,7 +89566,7 @@ function getObjKeyMap(obj, prefix = '') {
89428
89566
  Object.defineProperty(exports, "__esModule", ({
89429
89567
  value: true
89430
89568
  }));
89431
- exports.getBooleanSchemas = exports.BooleanConfigName = exports.BooleanConfig = void 0;
89569
+ exports.BooleanSchemas = exports.BooleanConfigName = exports.BooleanConfig = void 0;
89432
89570
 
89433
89571
  var _locale = __webpack_require__(94646);
89434
89572
 
@@ -89445,20 +89583,14 @@ const BooleanConfigName = {
89445
89583
  [BooleanConfig.YES]: () => _locale.i18n.t(_locale.localeKeys.boolean.yes)
89446
89584
  };
89447
89585
  exports.BooleanConfigName = BooleanConfigName;
89448
-
89449
- const getBooleanSchemas = (YesChildSchemas, NoChildSchemas) => [{
89586
+ const BooleanSchemas = [{
89450
89587
  key: BooleanConfig.NO,
89451
- label: BooleanConfigName[BooleanConfig.NO],
89452
- isObject: Boolean(NoChildSchemas),
89453
- items: NoChildSchemas
89588
+ label: BooleanConfigName[BooleanConfig.NO]
89454
89589
  }, {
89455
89590
  key: BooleanConfig.YES,
89456
- label: BooleanConfigName[BooleanConfig.YES],
89457
- isObject: Boolean(YesChildSchemas),
89458
- items: YesChildSchemas
89591
+ label: BooleanConfigName[BooleanConfig.YES]
89459
89592
  }];
89460
-
89461
- exports.getBooleanSchemas = getBooleanSchemas;
89593
+ exports.BooleanSchemas = BooleanSchemas;
89462
89594
 
89463
89595
  /***/ }),
89464
89596
 
@@ -89481,24 +89613,22 @@ const EnableLessSchema = {
89481
89613
  key: 'enableLess',
89482
89614
  type: ['string'],
89483
89615
  label: () => _locale.i18n.t(_locale.localeKeys.needModifyConfig.enableLess),
89484
- when: (_, extra) => (extra === null || extra === void 0 ? void 0 : extra.isEmptySrc) === undefined ? true : Boolean(extra === null || extra === void 0 ? void 0 : extra.isEmptySrc),
89485
89616
  mutualExclusion: true,
89486
89617
  state: {
89487
89618
  value: _boolean.BooleanConfig.NO
89488
89619
  },
89489
- items: (0, _boolean.getBooleanSchemas)()
89620
+ items: _boolean.BooleanSchemas
89490
89621
  };
89491
89622
  exports.EnableLessSchema = EnableLessSchema;
89492
89623
  const EnableSassSchema = {
89493
89624
  key: 'enableSass',
89494
89625
  type: ['string'],
89495
89626
  label: () => _locale.i18n.t(_locale.localeKeys.needModifyConfig.enableSass),
89496
- when: (_, extra) => (extra === null || extra === void 0 ? void 0 : extra.isEmptySrc) === undefined ? true : Boolean(extra === null || extra === void 0 ? void 0 : extra.isEmptySrc),
89497
89627
  mutualExclusion: true,
89498
89628
  state: {
89499
89629
  value: _boolean.BooleanConfig.NO
89500
89630
  },
89501
- items: (0, _boolean.getBooleanSchemas)()
89631
+ items: _boolean.BooleanSchemas
89502
89632
  };
89503
89633
  exports.EnableSassSchema = EnableSassSchema;
89504
89634
 
@@ -89768,7 +89898,7 @@ exports.PackagePathSchema = PackagePathSchema;
89768
89898
  Object.defineProperty(exports, "__esModule", ({
89769
89899
  value: true
89770
89900
  }));
89771
- exports.SubSolutionText = exports.SubSolutionSchema = exports.SubSolutionGenerator = exports.SubSolution = exports.SolutionText = exports.SolutionSchema = exports.SolutionGenerator = exports.Solution = exports.EntryGenerator = exports.ElectronGenerator = exports.DependenceGenerator = exports.ChangesetGenerator = exports.BaseGenerator = void 0;
89901
+ exports.SubSolutionText = exports.SubSolutionSchema = exports.SubSolutionGenerator = exports.SubSolution = exports.SolutionText = exports.SolutionSchema = exports.SolutionGenerator = exports.Solution = exports.EslintGenerator = exports.EntryGenerator = exports.ElectronGenerator = exports.DependenceGenerator = exports.ChangesetGenerator = exports.BaseGenerator = void 0;
89772
89902
 
89773
89903
  var _locale = __webpack_require__(94646);
89774
89904
 
@@ -89857,6 +89987,8 @@ const EntryGenerator = '@modern-js/entry-generator';
89857
89987
  exports.EntryGenerator = EntryGenerator;
89858
89988
  const ElectronGenerator = '@modern-js/electron-generator';
89859
89989
  exports.ElectronGenerator = ElectronGenerator;
89990
+ const EslintGenerator = '@modern-js/eslint-generator';
89991
+ exports.EslintGenerator = EslintGenerator;
89860
89992
 
89861
89993
  /***/ }),
89862
89994
 
@@ -89873,16 +90005,11 @@ exports.GeneratorSchema = exports.GeneratorDefaultConfig = void 0;
89873
90005
 
89874
90006
  var _common = __webpack_require__(25523);
89875
90007
 
89876
- const GeneratorSchemaMap = {
89877
- packageName: _common.PackageNameSchema,
89878
- packagePath: _common.PackagePathSchema,
89879
- PackageManager: _common.PackageManagerSchema,
89880
- language: _common.LanguageSchema
89881
- };
90008
+ const GeneratorSchemas = [_common.PackageNameSchema, _common.PackagePathSchema, _common.PackageManagerSchema, _common.LanguageSchema];
89882
90009
  const GeneratorSchema = {
89883
90010
  key: 'generator-generator',
89884
90011
  isObject: true,
89885
- items: Object.values(GeneratorSchemaMap)
90012
+ items: Object.values(GeneratorSchemas)
89886
90013
  };
89887
90014
  exports.GeneratorSchema = GeneratorSchema;
89888
90015
  const GeneratorDefaultConfig = {
@@ -90029,6 +90156,20 @@ Object.keys(_expand).forEach(function (key) {
90029
90156
  }
90030
90157
  });
90031
90158
  });
90159
+
90160
+ var _base = __webpack_require__(32746);
90161
+
90162
+ Object.keys(_base).forEach(function (key) {
90163
+ if (key === "default" || key === "__esModule") return;
90164
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
90165
+ if (key in exports && exports[key] === _base[key]) return;
90166
+ Object.defineProperty(exports, key, {
90167
+ enumerable: true,
90168
+ get: function () {
90169
+ return _base[key];
90170
+ }
90171
+ });
90172
+ });
90032
90173
  const SolutionDefualtConfig = {
90033
90174
  [_common.Solution.MWA]: _mwa.MWADefaultConfig,
90034
90175
  [_common.Solution.Module]: _module.ModuleDefaultConfig,
@@ -90081,13 +90222,13 @@ const EN_LOCALE = {
90081
90222
  storybook: 'Enable "Storybook"',
90082
90223
  runtime_api: 'Enable "Runtime API"',
90083
90224
  mwa_storybook: 'Enable "Visual Testing (Storybook)"',
90084
- ssg: 'Enable "SSG"'
90225
+ ssg: 'Enable "SSG"',
90226
+ deploy: 'Enable "Deploy"'
90085
90227
  },
90086
90228
  element: {
90087
90229
  self: 'Create project element',
90088
90230
  entry: 'New "entry"',
90089
- server: 'New "Server Custom" source code directory',
90090
- env: 'Generate ".env" file'
90231
+ server: 'New "Server Custom" source code directory'
90091
90232
  },
90092
90233
  refactor: {
90093
90234
  self: 'Automatic refactor',
@@ -90149,6 +90290,23 @@ const EN_LOCALE = {
90149
90290
  func: 'Function',
90150
90291
  framework: 'Framework'
90151
90292
  }
90293
+ },
90294
+ deploy: {
90295
+ cloud: {
90296
+ self: 'Modify the default Web Server?'
90297
+ },
90298
+ cdn: {
90299
+ self: 'Please select the cdn platform you want to use',
90300
+ oss: 'Aliyun OSS',
90301
+ cos: 'Tencent COS',
90302
+ no: 'Not Enabled'
90303
+ },
90304
+ lambda: {
90305
+ self: 'Please select the lambda you want to use',
90306
+ fc: 'Aliyun FC',
90307
+ scf: 'Tencent SCF',
90308
+ no: 'Not Enabled'
90309
+ }
90152
90310
  }
90153
90311
  };
90154
90312
  exports.EN_LOCALE = EN_LOCALE;
@@ -90224,13 +90382,13 @@ const ZH_LOCALE = {
90224
90382
  storybook: '启用「Storybook」',
90225
90383
  runtime_api: '启用「Rumtime API」',
90226
90384
  mwa_storybook: '启用「Visual Testing (Storybook)」模式',
90227
- ssg: '启用「SSG」功能'
90385
+ ssg: '启用「SSG」功能',
90386
+ deploy: '启用「部署」功能'
90228
90387
  },
90229
90388
  element: {
90230
90389
  self: '创建工程元素',
90231
90390
  entry: '新建「应用入口」',
90232
- server: '新建「Server 自定义」源码目录',
90233
- env: '生成「.env」文件'
90391
+ server: '新建「Server 自定义」源码目录'
90234
90392
  },
90235
90393
  refactor: {
90236
90394
  self: '自动重构',
@@ -90293,6 +90451,23 @@ const ZH_LOCALE = {
90293
90451
  func: '函数模式',
90294
90452
  framework: '框架模式'
90295
90453
  }
90454
+ },
90455
+ deploy: {
90456
+ cloud: {
90457
+ self: '默认使用框架内置的产品级 Web 服务器,是否调整?'
90458
+ },
90459
+ cdn: {
90460
+ self: '请选择 CDN 平台',
90461
+ oss: '阿里云 OSS',
90462
+ cos: '腾讯云 COS',
90463
+ no: '不使用 CDN'
90464
+ },
90465
+ lambda: {
90466
+ self: '请选择云函数平台',
90467
+ fc: '阿里云 FC',
90468
+ scf: '腾讯云 SCF',
90469
+ no: '不使用云函数部署'
90470
+ }
90296
90471
  }
90297
90472
  };
90298
90473
  exports.ZH_LOCALE = ZH_LOCALE;
@@ -90333,7 +90508,7 @@ Object.keys(_project).forEach(function (key) {
90333
90508
  Object.defineProperty(exports, "__esModule", ({
90334
90509
  value: true
90335
90510
  }));
90336
- exports.ModuleSchema = exports.ModuleDefaultConfig = void 0;
90511
+ exports.moduleConfigWhenFunc = exports.NeedModifyModuleConfigSchema = exports.ModuleSchemas = exports.ModuleSchema = exports.ModuleDefaultConfig = exports.EnableModuleSassSchema = exports.EnableModuleLessSchema = void 0;
90337
90512
 
90338
90513
  var _locale = __webpack_require__(94646);
90339
90514
 
@@ -90341,6 +90516,27 @@ var _common = __webpack_require__(25523);
90341
90516
 
90342
90517
  var _css = __webpack_require__(99961);
90343
90518
 
90519
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
90520
+
90521
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
90522
+
90523
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
90524
+
90525
+ const moduleConfigWhenFunc = values => values.needModifyModuleConfig === _common.BooleanConfig.YES;
90526
+
90527
+ exports.moduleConfigWhenFunc = moduleConfigWhenFunc;
90528
+
90529
+ const EnableModuleLessSchema = _objectSpread(_objectSpread({}, _css.EnableLessSchema), {}, {
90530
+ when: moduleConfigWhenFunc
90531
+ });
90532
+
90533
+ exports.EnableModuleLessSchema = EnableModuleLessSchema;
90534
+
90535
+ const EnableModuleSassSchema = _objectSpread(_objectSpread({}, _css.EnableSassSchema), {}, {
90536
+ when: moduleConfigWhenFunc
90537
+ });
90538
+
90539
+ exports.EnableModuleSassSchema = EnableModuleSassSchema;
90344
90540
  const NeedModifyModuleConfigSchema = {
90345
90541
  key: 'needModifyModuleConfig',
90346
90542
  label: () => _locale.i18n.t(_locale.localeKeys.needModifyConfig.self),
@@ -90349,24 +90545,23 @@ const NeedModifyModuleConfigSchema = {
90349
90545
  state: {
90350
90546
  value: _common.BooleanConfig.NO
90351
90547
  },
90352
- items: (0, _common.getBooleanSchemas)([_css.EnableLessSchema, _css.EnableSassSchema])
90353
- };
90354
- const ModuleSchemaMap = {
90355
- packageName: _common.PackageNameSchema,
90356
- packagePath: _common.PackagePathSchema,
90357
- language: _common.LanguageSchema,
90358
- packageManager: _common.PackageManagerSchema,
90359
- needModifyModuleConfig: NeedModifyModuleConfigSchema
90548
+ items: _common.BooleanSchemas
90360
90549
  };
90550
+ exports.NeedModifyModuleConfigSchema = NeedModifyModuleConfigSchema;
90551
+ const ModuleSchemas = [_common.PackageNameSchema, _common.PackagePathSchema, _common.LanguageSchema, _common.PackageManagerSchema, NeedModifyModuleConfigSchema, EnableModuleLessSchema, EnableModuleSassSchema];
90552
+ exports.ModuleSchemas = ModuleSchemas;
90361
90553
  const ModuleSchema = {
90362
90554
  key: 'module',
90363
90555
  isObject: true,
90364
- items: Object.values(ModuleSchemaMap)
90556
+ items: ModuleSchemas
90365
90557
  };
90366
90558
  exports.ModuleSchema = ModuleSchema;
90367
90559
  const ModuleDefaultConfig = {
90368
90560
  language: _common.Language.TS,
90369
- packageManager: _common.PackageManager.Pnpm
90561
+ packageManager: _common.PackageManager.Pnpm,
90562
+ needModifyModuleConfig: _common.BooleanConfig.NO,
90563
+ enableLess: _common.BooleanConfig.NO,
90564
+ enableSass: _common.BooleanConfig.NO
90370
90565
  };
90371
90566
  exports.ModuleDefaultConfig = ModuleDefaultConfig;
90372
90567
 
@@ -90406,17 +90601,16 @@ Object.keys(_project).forEach(function (key) {
90406
90601
  Object.defineProperty(exports, "__esModule", ({
90407
90602
  value: true
90408
90603
  }));
90409
- exports.MonorepoSchema = exports.MonorepoDefaultConfig = void 0;
90604
+ exports.MonorepoSchemas = exports.MonorepoSchema = exports.MonorepoDefaultConfig = void 0;
90410
90605
 
90411
90606
  var _common = __webpack_require__(25523);
90412
90607
 
90413
- const MonorepoSchemaMap = {
90414
- packageManager: _common.PackageManagerSchema
90415
- };
90608
+ const MonorepoSchemas = [_common.PackageManagerSchema];
90609
+ exports.MonorepoSchemas = MonorepoSchemas;
90416
90610
  const MonorepoSchema = {
90417
90611
  key: 'monorepo',
90418
90612
  isObject: true,
90419
- items: Object.values(MonorepoSchemaMap)
90613
+ items: MonorepoSchemas
90420
90614
  };
90421
90615
  exports.MonorepoSchema = MonorepoSchema;
90422
90616
  const MonorepoDefaultConfig = {
@@ -90435,7 +90629,7 @@ exports.MonorepoDefaultConfig = MonorepoDefaultConfig;
90435
90629
  Object.defineProperty(exports, "__esModule", ({
90436
90630
  value: true
90437
90631
  }));
90438
- exports.BFFTypeSchema = exports.BFFType = exports.BFFSchema = void 0;
90632
+ exports.MWADefaultBffConfig = exports.BFFTypeSchema = exports.BFFType = exports.BFFSchemas = exports.BFFSchema = void 0;
90439
90633
 
90440
90634
  var _common = __webpack_require__(70852);
90441
90635
 
@@ -90460,17 +90654,20 @@ const BFFTypeSchema = {
90460
90654
  }))
90461
90655
  };
90462
90656
  exports.BFFTypeSchema = BFFTypeSchema;
90463
- const BFFSchemaMap = {
90464
- bffType: BFFTypeSchema,
90465
- framework: _common.FrameworkSchema
90466
- };
90657
+ const BFFSchemas = [BFFTypeSchema, _common.FrameworkSchema];
90658
+ exports.BFFSchemas = BFFSchemas;
90467
90659
  const BFFSchema = {
90468
90660
  key: 'bff',
90469
90661
  label: () => _locale.i18n.t(_locale.localeKeys.action.function.bff),
90470
90662
  isObject: true,
90471
- items: Object.values(BFFSchemaMap)
90663
+ items: BFFSchemas
90472
90664
  };
90473
90665
  exports.BFFSchema = BFFSchema;
90666
+ const MWADefaultBffConfig = {
90667
+ bffType: BFFType.Func,
90668
+ frameWork: _common.Framework.Express
90669
+ };
90670
+ exports.MWADefaultBffConfig = MWADefaultBffConfig;
90474
90671
 
90475
90672
  /***/ }),
90476
90673
 
@@ -90483,7 +90680,7 @@ exports.BFFSchema = BFFSchema;
90483
90680
  Object.defineProperty(exports, "__esModule", ({
90484
90681
  value: true
90485
90682
  }));
90486
- exports.RunWaySchema = exports.RunWay = exports.NeedModifyMWAConfigSchema = exports.FrameworkSchema = exports.Framework = exports.ClientRoute = void 0;
90683
+ exports.mwaConfigWhenFunc = exports.RunWaySchema = exports.RunWay = exports.NeedModifyMWAConfigSchema = exports.FrameworkSchema = exports.Framework = exports.EnableMWASassSchema = exports.EnableMWALessSchema = exports.DisableStateManagementSchema = exports.ClientRouteSchema = exports.ClientRoute = void 0;
90487
90684
 
90488
90685
  var _locale = __webpack_require__(94646);
90489
90686
 
@@ -90491,6 +90688,15 @@ var _boolean = __webpack_require__(34069);
90491
90688
 
90492
90689
  var _css = __webpack_require__(99961);
90493
90690
 
90691
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
90692
+
90693
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
90694
+
90695
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
90696
+
90697
+ const mwaConfigWhenFunc = values => values.needModifyMWAConfig === _boolean.BooleanConfig.YES;
90698
+
90699
+ exports.mwaConfigWhenFunc = mwaConfigWhenFunc;
90494
90700
  let RunWay;
90495
90701
  exports.RunWay = RunWay;
90496
90702
 
@@ -90528,6 +90734,7 @@ const ClientRouteSchema = {
90528
90734
  type: ['string'],
90529
90735
  label: () => _locale.i18n.t(_locale.localeKeys.entry.clientRoute.self),
90530
90736
  mutualExclusion: true,
90737
+ when: mwaConfigWhenFunc,
90531
90738
  state: {
90532
90739
  value: ClientRoute.SelfControlRoute
90533
90740
  },
@@ -90536,16 +90743,31 @@ const ClientRouteSchema = {
90536
90743
  label: () => _locale.i18n.t(_locale.localeKeys.entry.clientRoute[clientRoute])
90537
90744
  }))
90538
90745
  };
90746
+ exports.ClientRouteSchema = ClientRouteSchema;
90539
90747
  const DisableStateManagementSchema = {
90540
90748
  key: 'disableStateManagement',
90541
90749
  type: ['string'],
90542
90750
  label: () => _locale.i18n.t(_locale.localeKeys.entry.disableStateManagement),
90543
90751
  mutualExclusion: true,
90752
+ when: mwaConfigWhenFunc,
90544
90753
  state: {
90545
90754
  value: _boolean.BooleanConfig.NO
90546
90755
  },
90547
- items: (0, _boolean.getBooleanSchemas)()
90756
+ items: _boolean.BooleanSchemas
90548
90757
  };
90758
+ exports.DisableStateManagementSchema = DisableStateManagementSchema;
90759
+
90760
+ const EnableMWALessSchema = _objectSpread(_objectSpread({}, _css.EnableLessSchema), {}, {
90761
+ when: mwaConfigWhenFunc
90762
+ });
90763
+
90764
+ exports.EnableMWALessSchema = EnableMWALessSchema;
90765
+
90766
+ const EnableMWASassSchema = _objectSpread(_objectSpread({}, _css.EnableSassSchema), {}, {
90767
+ when: mwaConfigWhenFunc
90768
+ });
90769
+
90770
+ exports.EnableMWASassSchema = EnableMWASassSchema;
90549
90771
  const NeedModifyMWAConfigSchema = {
90550
90772
  key: 'needModifyMWAConfig',
90551
90773
  label: () => _locale.i18n.t(_locale.localeKeys.needModifyConfig.self),
@@ -90554,7 +90776,7 @@ const NeedModifyMWAConfigSchema = {
90554
90776
  state: {
90555
90777
  value: _boolean.BooleanConfig.NO
90556
90778
  },
90557
- items: (0, _boolean.getBooleanSchemas)([ClientRouteSchema, DisableStateManagementSchema, _css.EnableLessSchema, _css.EnableSassSchema])
90779
+ items: _boolean.BooleanSchemas
90558
90780
  };
90559
90781
  exports.NeedModifyMWAConfigSchema = NeedModifyMWAConfigSchema;
90560
90782
  let Framework;
@@ -90581,6 +90803,82 @@ exports.FrameworkSchema = FrameworkSchema;
90581
90803
 
90582
90804
  /***/ }),
90583
90805
 
90806
+ /***/ 73423:
90807
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
90808
+
90809
+ "use strict";
90810
+
90811
+
90812
+ Object.defineProperty(exports, "__esModule", ({
90813
+ value: true
90814
+ }));
90815
+ exports.LambdaTypeSchema = exports.LambdaType = exports.DeployTypeSchema = exports.CloudTypeSchema = exports.CDNTypeSchema = exports.CDNType = void 0;
90816
+
90817
+ var _locale = __webpack_require__(94646);
90818
+
90819
+ var _common = __webpack_require__(25523);
90820
+
90821
+ let CDNType;
90822
+ exports.CDNType = CDNType;
90823
+
90824
+ (function (CDNType) {
90825
+ CDNType["OSS"] = "oss";
90826
+ CDNType["COS"] = "cos";
90827
+ CDNType["NO"] = "no";
90828
+ })(CDNType || (exports.CDNType = CDNType = {}));
90829
+
90830
+ let LambdaType;
90831
+ exports.LambdaType = LambdaType;
90832
+
90833
+ (function (LambdaType) {
90834
+ LambdaType["FC"] = "fc";
90835
+ LambdaType["SCF"] = "scf";
90836
+ LambdaType["NO"] = "no";
90837
+ })(LambdaType || (exports.LambdaType = LambdaType = {}));
90838
+
90839
+ const CloudTypeSchema = {
90840
+ key: 'disableModernServer',
90841
+ type: ['string'],
90842
+ label: () => _locale.i18n.t(_locale.localeKeys.deploy.cloud.self),
90843
+ mutualExclusion: true,
90844
+ state: {
90845
+ value: _common.BooleanConfig.NO
90846
+ },
90847
+ items: _common.BooleanSchemas
90848
+ };
90849
+ exports.CloudTypeSchema = CloudTypeSchema;
90850
+ const CDNTypeSchema = {
90851
+ key: 'cdnType',
90852
+ type: ['string'],
90853
+ label: () => _locale.i18n.t(_locale.localeKeys.deploy.cdn.self),
90854
+ mutualExclusion: true,
90855
+ items: Object.values(CDNType).map(deployType => ({
90856
+ key: deployType,
90857
+ label: () => _locale.i18n.t(_locale.localeKeys.deploy.cdn[deployType])
90858
+ }))
90859
+ };
90860
+ exports.CDNTypeSchema = CDNTypeSchema;
90861
+ const LambdaTypeSchema = {
90862
+ key: 'lambdaType',
90863
+ type: ['string'],
90864
+ label: () => _locale.i18n.t(_locale.localeKeys.deploy.lambda.self),
90865
+ mutualExclusion: true,
90866
+ when: values => values.disableModernServer === _common.BooleanConfig.NO,
90867
+ items: Object.values(LambdaType).map(deployType => ({
90868
+ key: deployType,
90869
+ label: () => _locale.i18n.t(_locale.localeKeys.deploy.lambda[deployType])
90870
+ }))
90871
+ };
90872
+ exports.LambdaTypeSchema = LambdaTypeSchema;
90873
+ const DeployTypeSchema = {
90874
+ key: 'Deploy',
90875
+ isObject: true,
90876
+ items: [CloudTypeSchema, CDNTypeSchema, LambdaTypeSchema]
90877
+ };
90878
+ exports.DeployTypeSchema = DeployTypeSchema;
90879
+
90880
+ /***/ }),
90881
+
90584
90882
  /***/ 91124:
90585
90883
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
90586
90884
 
@@ -90590,12 +90888,14 @@ exports.FrameworkSchema = FrameworkSchema;
90590
90888
  Object.defineProperty(exports, "__esModule", ({
90591
90889
  value: true
90592
90890
  }));
90593
- exports.EntrySchema = void 0;
90891
+ exports.MWADefaultEntryConfig = exports.EntrySchemas = exports.EntrySchema = void 0;
90594
90892
 
90595
90893
  var _common = __webpack_require__(70852);
90596
90894
 
90597
90895
  var _locale = __webpack_require__(94646);
90598
90896
 
90897
+ var _common2 = __webpack_require__(25523);
90898
+
90599
90899
  const EntryNameSchema = {
90600
90900
  key: 'name',
90601
90901
  type: ['string'],
@@ -90630,17 +90930,21 @@ const EntryNameSchema = {
90630
90930
  return true;
90631
90931
  }
90632
90932
  };
90633
- const EntrySchemaMap = {
90634
- name: EntryNameSchema,
90635
- needModifyEntryConfig: _common.NeedModifyMWAConfigSchema
90636
- };
90933
+ const EntrySchemas = [EntryNameSchema, _common.NeedModifyMWAConfigSchema, _common.ClientRouteSchema, _common.DisableStateManagementSchema];
90934
+ exports.EntrySchemas = EntrySchemas;
90637
90935
  const EntrySchema = {
90638
90936
  key: 'entry',
90639
90937
  label: () => _locale.i18n.t(_locale.localeKeys.action.element.entry),
90640
90938
  isObject: true,
90641
- items: Object.values(EntrySchemaMap)
90939
+ items: EntrySchemas
90642
90940
  };
90643
90941
  exports.EntrySchema = EntrySchema;
90942
+ const MWADefaultEntryConfig = {
90943
+ needModifyMWAConfig: _common2.BooleanConfig.NO,
90944
+ clientRoute: _common.ClientRoute.SelfControlRoute,
90945
+ disableStateManagement: _common2.BooleanConfig.NO
90946
+ };
90947
+ exports.MWADefaultEntryConfig = MWADefaultEntryConfig;
90644
90948
 
90645
90949
  /***/ }),
90646
90950
 
@@ -90693,6 +90997,19 @@ Object.keys(_bff).forEach(function (key) {
90693
90997
  });
90694
90998
  });
90695
90999
 
91000
+ var _deploy = __webpack_require__(73423);
91001
+
91002
+ Object.keys(_deploy).forEach(function (key) {
91003
+ if (key === "default" || key === "__esModule") return;
91004
+ if (key in exports && exports[key] === _deploy[key]) return;
91005
+ Object.defineProperty(exports, key, {
91006
+ enumerable: true,
91007
+ get: function () {
91008
+ return _deploy[key];
91009
+ }
91010
+ });
91011
+ });
91012
+
90696
91013
  var _project = __webpack_require__(30968);
90697
91014
 
90698
91015
  Object.keys(_project).forEach(function (key) {
@@ -90730,31 +91047,29 @@ Object.keys(_server).forEach(function (key) {
90730
91047
  Object.defineProperty(exports, "__esModule", ({
90731
91048
  value: true
90732
91049
  }));
90733
- exports.MWASchema = exports.MWADefaultConfig = void 0;
91050
+ exports.MWASchemas = exports.MWASchema = exports.MWADefaultConfig = void 0;
90734
91051
 
90735
91052
  var _common = __webpack_require__(70852);
90736
91053
 
90737
91054
  var _common2 = __webpack_require__(25523);
90738
91055
 
90739
- const MWASchemaMap = {
90740
- packageName: _common2.PackageNameSchema,
90741
- packagePath: _common2.PackagePathSchema,
90742
- language: _common2.LanguageSchema,
90743
- packageManager: _common2.PackageManagerSchema,
90744
- runWay: _common.RunWaySchema,
90745
- needModifyMWAConfig: _common.NeedModifyMWAConfigSchema
90746
- };
91056
+ const MWASchemas = [_common2.PackageNameSchema, _common2.PackagePathSchema, _common2.LanguageSchema, _common2.PackageManagerSchema, _common.RunWaySchema, _common.NeedModifyMWAConfigSchema, _common.ClientRouteSchema, _common.DisableStateManagementSchema, _common.EnableMWALessSchema, _common.EnableMWASassSchema];
91057
+ exports.MWASchemas = MWASchemas;
90747
91058
  const MWASchema = {
90748
91059
  key: 'mwa',
90749
91060
  isObject: true,
90750
- items: Object.values(MWASchemaMap)
91061
+ items: MWASchemas
90751
91062
  };
90752
91063
  exports.MWASchema = MWASchema;
90753
91064
  const MWADefaultConfig = {
90754
91065
  language: _common2.Language.TS,
90755
91066
  packageManager: _common2.PackageManager.Pnpm,
90756
91067
  runWay: _common.RunWay.No,
90757
- needModifyMWAConfig: _common2.BooleanConfig.NO
91068
+ needModifyMWAConfig: _common2.BooleanConfig.NO,
91069
+ clientRoute: _common.ClientRoute.SelfControlRoute,
91070
+ disableStateManagement: _common2.BooleanConfig.NO,
91071
+ enableLess: _common2.BooleanConfig.NO,
91072
+ enableSass: _common2.BooleanConfig.NO
90758
91073
  };
90759
91074
  exports.MWADefaultConfig = MWADefaultConfig;
90760
91075
 
@@ -90769,22 +91084,25 @@ exports.MWADefaultConfig = MWADefaultConfig;
90769
91084
  Object.defineProperty(exports, "__esModule", ({
90770
91085
  value: true
90771
91086
  }));
90772
- exports.ServerSchema = void 0;
91087
+ exports.ServerSchemas = exports.ServerSchema = exports.MWADefaultServerConfig = void 0;
90773
91088
 
90774
91089
  var _locale = __webpack_require__(94646);
90775
91090
 
90776
91091
  var _common = __webpack_require__(70852);
90777
91092
 
90778
- const ServerSchemaMap = {
90779
- framework: _common.FrameworkSchema
90780
- };
91093
+ const ServerSchemas = [_common.FrameworkSchema];
91094
+ exports.ServerSchemas = ServerSchemas;
90781
91095
  const ServerSchema = {
90782
91096
  key: 'server',
90783
91097
  label: () => _locale.i18n.t(_locale.localeKeys.action.element.server),
90784
91098
  isObject: true,
90785
- items: Object.values(ServerSchemaMap)
91099
+ items: ServerSchemas
90786
91100
  };
90787
91101
  exports.ServerSchema = ServerSchema;
91102
+ const MWADefaultServerConfig = {
91103
+ framework: _common.Framework.Express
91104
+ };
91105
+ exports.MWADefaultServerConfig = MWADefaultServerConfig;
90788
91106
 
90789
91107
  /***/ }),
90790
91108
 
@@ -90816,7 +91134,6 @@ exports.ActionElement = ActionElement;
90816
91134
  (function (ActionElement) {
90817
91135
  ActionElement["Entry"] = "entry";
90818
91136
  ActionElement["Server"] = "server";
90819
- ActionElement["Env"] = "env";
90820
91137
  })(ActionElement || (exports.ActionElement = ActionElement = {}));
90821
91138
 
90822
91139
  let ActionFunction;
@@ -90837,6 +91154,7 @@ exports.ActionFunction = ActionFunction;
90837
91154
  ActionFunction["Storybook"] = "storybook";
90838
91155
  ActionFunction["RuntimeApi"] = "runtimeApi";
90839
91156
  ActionFunction["SSG"] = "ssg";
91157
+ ActionFunction["Deploy"] = "deploy";
90840
91158
  })(ActionFunction || (exports.ActionFunction = ActionFunction = {}));
90841
91159
 
90842
91160
  let ActionRefactor;
@@ -90854,8 +91172,7 @@ const ActionTypeText = {
90854
91172
  exports.ActionTypeText = ActionTypeText;
90855
91173
  const ActionElementText = {
90856
91174
  [ActionElement.Entry]: () => _locale.i18n.t(_locale.localeKeys.action.element.entry),
90857
- [ActionElement.Server]: () => _locale.i18n.t(_locale.localeKeys.action.element.server),
90858
- [ActionElement.Env]: () => _locale.i18n.t(_locale.localeKeys.action.element.env)
91175
+ [ActionElement.Server]: () => _locale.i18n.t(_locale.localeKeys.action.element.server)
90859
91176
  };
90860
91177
  exports.ActionElementText = ActionElementText;
90861
91178
  const ActionFunctionText = {
@@ -90872,7 +91189,8 @@ const ActionFunctionText = {
90872
91189
  [ActionFunction.Doc]: () => _locale.i18n.t(_locale.localeKeys.action.function.doc),
90873
91190
  [ActionFunction.Storybook]: () => _locale.i18n.t(_locale.localeKeys.action.function.storybook),
90874
91191
  [ActionFunction.RuntimeApi]: () => _locale.i18n.t(_locale.localeKeys.action.function.runtime_api),
90875
- [ActionFunction.SSG]: () => _locale.i18n.t(_locale.localeKeys.action.function.ssg)
91192
+ [ActionFunction.SSG]: () => _locale.i18n.t(_locale.localeKeys.action.function.ssg),
91193
+ [ActionFunction.Deploy]: () => _locale.i18n.t(_locale.localeKeys.action.function.deploy)
90876
91194
  };
90877
91195
  exports.ActionFunctionText = ActionFunctionText;
90878
91196
  const ActionRefactorText = {
@@ -91095,12 +91413,11 @@ const MWAActionTypes = [_common.ActionType.Element, _common.ActionType.Function
91095
91413
  ];
91096
91414
  exports.MWAActionTypes = MWAActionTypes;
91097
91415
  const MWAActionFunctions = [_common.ActionFunction.UnBundle, _common.ActionFunction.TailwindCSS, _common.ActionFunction.Less, _common.ActionFunction.Sass, _common.ActionFunction.BFF, _common.ActionFunction.SSG, _common.ActionFunction.MicroFrontend, _common.ActionFunction.Electron, // ActionFunction.I18n,
91098
- _common.ActionFunction.Test, _common.ActionFunction.Storybook // ActionFunction.E2ETest,
91416
+ _common.ActionFunction.Test, _common.ActionFunction.Storybook, // ActionFunction.E2ETest,
91099
91417
  // ActionFunction.Doc,
91100
- ];
91418
+ _common.ActionFunction.Deploy];
91101
91419
  exports.MWAActionFunctions = MWAActionFunctions;
91102
- const MWAActionElements = [_common.ActionElement.Entry, _common.ActionElement.Server // ActionElement.Env,
91103
- ];
91420
+ const MWAActionElements = [_common.ActionElement.Entry, _common.ActionElement.Server];
91104
91421
  exports.MWAActionElements = MWAActionElements;
91105
91422
  const MWAActionReactors = [_common.ActionRefactor.BFFToApp];
91106
91423
  exports.MWAActionReactors = MWAActionReactors;
@@ -91160,7 +91477,6 @@ exports.MWAActionFunctionsDependencies = MWAActionFunctionsDependencies;
91160
91477
  const MWANewActionGenerators = {
91161
91478
  [_common.ActionType.Element]: {
91162
91479
  [_common.ActionElement.Entry]: '@modern-js/entry-generator',
91163
- [_common.ActionElement.Env]: '@modern-js/env-generator',
91164
91480
  [_common.ActionElement.Server]: '@modern-js/server-generator'
91165
91481
  },
91166
91482
  [_common.ActionType.Function]: {
@@ -91176,7 +91492,8 @@ const MWANewActionGenerators = {
91176
91492
  [_common.ActionFunction.E2ETest]: '@modern-js/dependence-generator',
91177
91493
  [_common.ActionFunction.Doc]: '@modern-js/dependence-generator',
91178
91494
  [_common.ActionFunction.Storybook]: '@modern-js/dependence-generator',
91179
- [_common.ActionFunction.SSG]: '@modern-js/ssg-generator'
91495
+ [_common.ActionFunction.SSG]: '@modern-js/ssg-generator',
91496
+ [_common.ActionFunction.Deploy]: '@modern-js/cloud-deploy-generator'
91180
91497
  },
91181
91498
  [_common.ActionType.Refactor]: {
91182
91499
  [_common.ActionRefactor.BFFToApp]: '@modern-js/bff-refactor-generator'
@@ -91541,7 +91858,7 @@ var _merge2 = _interopRequireDefault(__webpack_require__(13904));
91541
91858
 
91542
91859
  var _path = _interopRequireDefault(__webpack_require__(71017));
91543
91860
 
91544
- var _codesmithApiApp = __webpack_require__(72714);
91861
+ var _codesmithApiApp = __webpack_require__(3437);
91545
91862
 
91546
91863
  var _generatorCommon = __webpack_require__(50828);
91547
91864
 
@@ -91559,11 +91876,13 @@ const getGeneratorPath = (generator, distTag) => {
91559
91876
 
91560
91877
  const mergeDefaultConfig = context => {
91561
91878
  const {
91562
- solution
91879
+ defaultSolution
91563
91880
  } = context.config;
91564
91881
 
91565
- if (solution) {
91566
- (0, _merge2.default)(_generatorCommon.SolutionDefualtConfig[solution], context.config);
91882
+ if (defaultSolution) {
91883
+ (0, _merge2.default)(context.config, {
91884
+ solution: defaultSolution
91885
+ }, _generatorCommon.SolutionDefualtConfig[defaultSolution]);
91567
91886
  }
91568
91887
  };
91569
91888