@unpackjs/core 3.3.4 → 3.3.6
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.
- package/compiled/css-loader/index.js +339 -217
- package/compiled/launch-editor/index.js +21 -20
- package/compiled/launch-editor/package.json +1 -1
- package/compiled/less-loader/index.js +8 -8
- package/compiled/postcss-loader/index.js +194 -192
- package/compiled/sass-loader/index.js +142 -156
- package/compiled/sass-loader/package.json +1 -1
- package/compiled/semver/index.js +164 -164
- package/compiled/style-loader/index.js +10 -10
- package/compiled/webpack-bundle-analyzer/index.js +2 -2
- package/compiled/webpack-merge/index.js +29 -29
- package/dist/index.cjs +190 -249
- package/dist/index.js +135 -160
- package/dist-types/bundler-config/detectCircular.d.ts +6 -0
- package/dist-types/bundler-config/detectCircular.d.ts.map +1 -0
- package/dist-types/bundler-config/index.d.ts.map +1 -1
- package/dist-types/bundler-config/typeCheck.d.ts.map +1 -1
- package/package.json +8 -8
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
(() => {
|
|
2
2
|
var __webpack_modules__ = {
|
|
3
|
-
|
|
3
|
+
520: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
4
4
|
"use strict";
|
|
5
|
-
const clone = __nccwpck_require__(
|
|
6
|
-
const typeOf = __nccwpck_require__(
|
|
7
|
-
const isPlainObject = __nccwpck_require__(
|
|
5
|
+
const clone = __nccwpck_require__(377);
|
|
6
|
+
const typeOf = __nccwpck_require__(778);
|
|
7
|
+
const isPlainObject = __nccwpck_require__(967);
|
|
8
8
|
function cloneDeep(val, instanceClone) {
|
|
9
9
|
switch (typeOf(val)) {
|
|
10
10
|
case "object":
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
}
|
|
39
39
|
module.exports = cloneDeep;
|
|
40
40
|
},
|
|
41
|
-
|
|
41
|
+
790: (module) => {
|
|
42
42
|
module.exports = flatten;
|
|
43
43
|
flatten.flatten = flatten;
|
|
44
44
|
flatten.unflatten = unflatten;
|
|
@@ -171,14 +171,14 @@
|
|
|
171
171
|
return result;
|
|
172
172
|
}
|
|
173
173
|
},
|
|
174
|
-
|
|
174
|
+
967: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
175
175
|
"use strict";
|
|
176
176
|
/*!
|
|
177
177
|
* is-plain-object <https://github.com/jonschlinkert/is-plain-object>
|
|
178
178
|
*
|
|
179
179
|
* Copyright (c) 2014-2017, Jon Schlinkert.
|
|
180
180
|
* Released under the MIT License.
|
|
181
|
-
*/ var isObject = __nccwpck_require__(
|
|
181
|
+
*/ var isObject = __nccwpck_require__(281);
|
|
182
182
|
function isObjectObject(o) {
|
|
183
183
|
return (
|
|
184
184
|
isObject(o) === true &&
|
|
@@ -198,7 +198,7 @@
|
|
|
198
198
|
return true;
|
|
199
199
|
};
|
|
200
200
|
},
|
|
201
|
-
|
|
201
|
+
281: (module) => {
|
|
202
202
|
"use strict";
|
|
203
203
|
/*!
|
|
204
204
|
* isobject <https://github.com/jonschlinkert/isobject>
|
|
@@ -211,7 +211,7 @@
|
|
|
211
211
|
);
|
|
212
212
|
};
|
|
213
213
|
},
|
|
214
|
-
|
|
214
|
+
778: (module) => {
|
|
215
215
|
var toString = Object.prototype.toString;
|
|
216
216
|
module.exports = function kindOf(val) {
|
|
217
217
|
if (val === void 0) return "undefined";
|
|
@@ -346,7 +346,7 @@
|
|
|
346
346
|
return false;
|
|
347
347
|
}
|
|
348
348
|
},
|
|
349
|
-
|
|
349
|
+
377: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
350
350
|
"use strict";
|
|
351
351
|
/*!
|
|
352
352
|
* shallow-clone <https://github.com/jonschlinkert/shallow-clone>
|
|
@@ -354,7 +354,7 @@
|
|
|
354
354
|
* Copyright (c) 2015-present, Jon Schlinkert.
|
|
355
355
|
* Released under the MIT License.
|
|
356
356
|
*/ const valueOf = Symbol.prototype.valueOf;
|
|
357
|
-
const typeOf = __nccwpck_require__(
|
|
357
|
+
const typeOf = __nccwpck_require__(778);
|
|
358
358
|
function clone(val, deep) {
|
|
359
359
|
switch (typeOf(val)) {
|
|
360
360
|
case "array":
|
|
@@ -420,7 +420,7 @@
|
|
|
420
420
|
}
|
|
421
421
|
module.exports = clone;
|
|
422
422
|
},
|
|
423
|
-
|
|
423
|
+
153: function (__unused_webpack_module, exports, __nccwpck_require__) {
|
|
424
424
|
"use strict";
|
|
425
425
|
var __read =
|
|
426
426
|
(this && this.__read) ||
|
|
@@ -472,19 +472,19 @@
|
|
|
472
472
|
exports.customizeObject =
|
|
473
473
|
exports.customizeArray =
|
|
474
474
|
void 0;
|
|
475
|
-
var wildcard_1 = __importDefault(__nccwpck_require__(
|
|
476
|
-
var merge_with_1 = __importDefault(__nccwpck_require__(
|
|
477
|
-
var join_arrays_1 = __importDefault(__nccwpck_require__(
|
|
478
|
-
var unique_1 = __importDefault(__nccwpck_require__(
|
|
475
|
+
var wildcard_1 = __importDefault(__nccwpck_require__(838));
|
|
476
|
+
var merge_with_1 = __importDefault(__nccwpck_require__(498));
|
|
477
|
+
var join_arrays_1 = __importDefault(__nccwpck_require__(168));
|
|
478
|
+
var unique_1 = __importDefault(__nccwpck_require__(62));
|
|
479
479
|
exports.unique = unique_1.default;
|
|
480
|
-
var types_1 = __nccwpck_require__(
|
|
480
|
+
var types_1 = __nccwpck_require__(160);
|
|
481
481
|
Object.defineProperty(exports, "CustomizeRule", {
|
|
482
482
|
enumerable: true,
|
|
483
483
|
get: function () {
|
|
484
484
|
return types_1.CustomizeRule;
|
|
485
485
|
},
|
|
486
486
|
});
|
|
487
|
-
var utils_1 = __nccwpck_require__(
|
|
487
|
+
var utils_1 = __nccwpck_require__(452);
|
|
488
488
|
function merge(firstConfiguration) {
|
|
489
489
|
var configurations = [];
|
|
490
490
|
for (var _i = 1; _i < arguments.length; _i++) {
|
|
@@ -757,7 +757,7 @@
|
|
|
757
757
|
}
|
|
758
758
|
exports.customizeObject = customizeObject;
|
|
759
759
|
},
|
|
760
|
-
|
|
760
|
+
168: function (__unused_webpack_module, exports, __nccwpck_require__) {
|
|
761
761
|
"use strict";
|
|
762
762
|
var __read =
|
|
763
763
|
(this && this.__read) ||
|
|
@@ -800,9 +800,9 @@
|
|
|
800
800
|
return mod && mod.__esModule ? mod : { default: mod };
|
|
801
801
|
};
|
|
802
802
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
803
|
-
var clone_deep_1 = __importDefault(__nccwpck_require__(
|
|
804
|
-
var merge_with_1 = __importDefault(__nccwpck_require__(
|
|
805
|
-
var utils_1 = __nccwpck_require__(
|
|
803
|
+
var clone_deep_1 = __importDefault(__nccwpck_require__(520));
|
|
804
|
+
var merge_with_1 = __importDefault(__nccwpck_require__(498));
|
|
805
|
+
var utils_1 = __nccwpck_require__(452);
|
|
806
806
|
var isArray = Array.isArray;
|
|
807
807
|
function joinArrays(_a) {
|
|
808
808
|
var _b = _a === void 0 ? {} : _a,
|
|
@@ -859,7 +859,7 @@
|
|
|
859
859
|
}
|
|
860
860
|
exports["default"] = joinArrays;
|
|
861
861
|
},
|
|
862
|
-
|
|
862
|
+
498: function (__unused_webpack_module, exports) {
|
|
863
863
|
"use strict";
|
|
864
864
|
var __read =
|
|
865
865
|
(this && this.__read) ||
|
|
@@ -907,7 +907,7 @@
|
|
|
907
907
|
}
|
|
908
908
|
exports["default"] = mergeWith;
|
|
909
909
|
},
|
|
910
|
-
|
|
910
|
+
160: (__unused_webpack_module, exports) => {
|
|
911
911
|
"use strict";
|
|
912
912
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
913
913
|
exports.CustomizeRule = void 0;
|
|
@@ -920,7 +920,7 @@
|
|
|
920
920
|
CustomizeRule["Replace"] = "replace";
|
|
921
921
|
})(CustomizeRule || (exports.CustomizeRule = CustomizeRule = {}));
|
|
922
922
|
},
|
|
923
|
-
|
|
923
|
+
62: function (__unused_webpack_module, exports) {
|
|
924
924
|
"use strict";
|
|
925
925
|
var __read =
|
|
926
926
|
(this && this.__read) ||
|
|
@@ -990,7 +990,7 @@
|
|
|
990
990
|
}
|
|
991
991
|
exports["default"] = mergeUnique;
|
|
992
992
|
},
|
|
993
|
-
|
|
993
|
+
452: function (__unused_webpack_module, exports, __nccwpck_require__) {
|
|
994
994
|
"use strict";
|
|
995
995
|
var __read =
|
|
996
996
|
(this && this.__read) ||
|
|
@@ -1022,7 +1022,7 @@
|
|
|
1022
1022
|
exports.isFunction =
|
|
1023
1023
|
exports.isRegex =
|
|
1024
1024
|
void 0;
|
|
1025
|
-
var flat_1 = __nccwpck_require__(
|
|
1025
|
+
var flat_1 = __nccwpck_require__(790);
|
|
1026
1026
|
function isRegex(o) {
|
|
1027
1027
|
return o instanceof RegExp;
|
|
1028
1028
|
}
|
|
@@ -1104,7 +1104,7 @@
|
|
|
1104
1104
|
}
|
|
1105
1105
|
exports.isSameCondition = isSameCondition;
|
|
1106
1106
|
},
|
|
1107
|
-
|
|
1107
|
+
838: (module) => {
|
|
1108
1108
|
"use strict";
|
|
1109
1109
|
var REGEXP_PARTS = /(\*|\?)/g;
|
|
1110
1110
|
function WildcardMatcher(text, separator) {
|
|
@@ -1195,6 +1195,6 @@
|
|
|
1195
1195
|
}
|
|
1196
1196
|
if (typeof __nccwpck_require__ !== "undefined")
|
|
1197
1197
|
__nccwpck_require__.ab = __dirname + "/";
|
|
1198
|
-
var __webpack_exports__ = __nccwpck_require__(
|
|
1198
|
+
var __webpack_exports__ = __nccwpck_require__(153);
|
|
1199
1199
|
module.exports = __webpack_exports__;
|
|
1200
1200
|
})();
|