@unpackjs/core 3.3.4 → 3.3.5
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 +139 -168
- package/dist/index.js +92 -122
- 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 +7 -7
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
(() => {
|
|
2
2
|
var __webpack_modules__ = {
|
|
3
|
-
|
|
3
|
+
355: (module) => {
|
|
4
4
|
module.exports = {
|
|
5
5
|
atom: "atom",
|
|
6
6
|
Brackets: "brackets",
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
code: "code",
|
|
9
9
|
vscodium: "vscodium",
|
|
10
10
|
codium: "codium",
|
|
11
|
+
cursor: "cursor",
|
|
11
12
|
trae: "trae",
|
|
12
13
|
emacs: "emacs",
|
|
13
14
|
gvim: "gvim",
|
|
@@ -30,7 +31,7 @@
|
|
|
30
31
|
zed: "zed",
|
|
31
32
|
};
|
|
32
33
|
},
|
|
33
|
-
|
|
34
|
+
515: (module) => {
|
|
34
35
|
module.exports = {
|
|
35
36
|
"/Applications/Atom.app/Contents/MacOS/Atom": "atom",
|
|
36
37
|
"/Applications/Atom Beta.app/Contents/MacOS/Atom Beta":
|
|
@@ -78,7 +79,7 @@
|
|
|
78
79
|
"/Applications/Zed.app/Contents/MacOS/zed": "zed",
|
|
79
80
|
};
|
|
80
81
|
},
|
|
81
|
-
|
|
82
|
+
224: (module) => {
|
|
82
83
|
module.exports = [
|
|
83
84
|
"Brackets.exe",
|
|
84
85
|
"Code.exe",
|
|
@@ -107,7 +108,7 @@
|
|
|
107
108
|
"trae.exe",
|
|
108
109
|
];
|
|
109
110
|
},
|
|
110
|
-
|
|
111
|
+
746: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
111
112
|
const path = __nccwpck_require__(928);
|
|
112
113
|
module.exports = function getArgumentsForPosition(
|
|
113
114
|
editor,
|
|
@@ -179,13 +180,13 @@
|
|
|
179
180
|
return [fileName];
|
|
180
181
|
};
|
|
181
182
|
},
|
|
182
|
-
|
|
183
|
+
795: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
183
184
|
const path = __nccwpck_require__(928);
|
|
184
|
-
const shellQuote = __nccwpck_require__(
|
|
185
|
+
const shellQuote = __nccwpck_require__(383);
|
|
185
186
|
const childProcess = __nccwpck_require__(317);
|
|
186
|
-
const COMMON_EDITORS_MACOS = __nccwpck_require__(
|
|
187
|
-
const COMMON_EDITORS_LINUX = __nccwpck_require__(
|
|
188
|
-
const COMMON_EDITORS_WIN = __nccwpck_require__(
|
|
187
|
+
const COMMON_EDITORS_MACOS = __nccwpck_require__(515);
|
|
188
|
+
const COMMON_EDITORS_LINUX = __nccwpck_require__(355);
|
|
189
|
+
const COMMON_EDITORS_WIN = __nccwpck_require__(224);
|
|
189
190
|
module.exports = function guessEditor(specifiedEditor) {
|
|
190
191
|
if (specifiedEditor) {
|
|
191
192
|
return shellQuote.parse(specifiedEditor);
|
|
@@ -265,14 +266,14 @@
|
|
|
265
266
|
return [null];
|
|
266
267
|
};
|
|
267
268
|
},
|
|
268
|
-
|
|
269
|
+
902: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
269
270
|
const fs = __nccwpck_require__(896);
|
|
270
271
|
const os = __nccwpck_require__(857);
|
|
271
272
|
const path = __nccwpck_require__(928);
|
|
272
|
-
const colors = __nccwpck_require__(
|
|
273
|
+
const colors = __nccwpck_require__(831);
|
|
273
274
|
const childProcess = __nccwpck_require__(317);
|
|
274
|
-
const guessEditor = __nccwpck_require__(
|
|
275
|
-
const getArgumentsForPosition = __nccwpck_require__(
|
|
275
|
+
const guessEditor = __nccwpck_require__(795);
|
|
276
|
+
const getArgumentsForPosition = __nccwpck_require__(746);
|
|
276
277
|
function wrapErrorCallback(cb) {
|
|
277
278
|
return (fileName, errorMessage) => {
|
|
278
279
|
console.log();
|
|
@@ -394,7 +395,7 @@
|
|
|
394
395
|
}
|
|
395
396
|
module.exports = launchEditor;
|
|
396
397
|
},
|
|
397
|
-
|
|
398
|
+
831: (module) => {
|
|
398
399
|
let p = process || {},
|
|
399
400
|
argv = p.argv || [],
|
|
400
401
|
env = p.env || {};
|
|
@@ -474,12 +475,12 @@
|
|
|
474
475
|
module.exports = createColors();
|
|
475
476
|
module.exports.createColors = createColors;
|
|
476
477
|
},
|
|
477
|
-
|
|
478
|
+
383: (__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
478
479
|
"use strict";
|
|
479
|
-
exports.quote = __nccwpck_require__(
|
|
480
|
-
exports.parse = __nccwpck_require__(
|
|
480
|
+
exports.quote = __nccwpck_require__(87);
|
|
481
|
+
exports.parse = __nccwpck_require__(368);
|
|
481
482
|
},
|
|
482
|
-
|
|
483
|
+
368: (module) => {
|
|
483
484
|
"use strict";
|
|
484
485
|
var CONTROL =
|
|
485
486
|
"(?:" +
|
|
@@ -680,7 +681,7 @@
|
|
|
680
681
|
}, []);
|
|
681
682
|
};
|
|
682
683
|
},
|
|
683
|
-
|
|
684
|
+
87: (module) => {
|
|
684
685
|
"use strict";
|
|
685
686
|
module.exports = function quote(xs) {
|
|
686
687
|
return xs
|
|
@@ -748,6 +749,6 @@
|
|
|
748
749
|
}
|
|
749
750
|
if (typeof __nccwpck_require__ !== "undefined")
|
|
750
751
|
__nccwpck_require__.ab = __dirname + "/";
|
|
751
|
-
var __webpack_exports__ = __nccwpck_require__(
|
|
752
|
+
var __webpack_exports__ = __nccwpck_require__(902);
|
|
752
753
|
module.exports = __webpack_exports__;
|
|
753
754
|
})();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"launch-editor","author":"Evan You","version":"2.
|
|
1
|
+
{"name":"launch-editor","author":"Evan You","version":"2.12.0","license":"MIT","types":"index.d.ts","type":"commonjs"}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
(() => {
|
|
2
2
|
"use strict";
|
|
3
3
|
var __webpack_modules__ = {
|
|
4
|
-
|
|
5
|
-
module.exports = __nccwpck_require__(
|
|
4
|
+
667: (module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
5
|
+
module.exports = __nccwpck_require__(325)["default"];
|
|
6
6
|
},
|
|
7
|
-
|
|
7
|
+
325: (__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
8
8
|
var __webpack_unused_export__;
|
|
9
9
|
__webpack_unused_export__ = { value: true };
|
|
10
10
|
exports["default"] = void 0;
|
|
11
11
|
var _path = _interopRequireDefault(__nccwpck_require__(928));
|
|
12
|
-
var _options = _interopRequireDefault(__nccwpck_require__(
|
|
13
|
-
var _utils = __nccwpck_require__(
|
|
12
|
+
var _options = _interopRequireDefault(__nccwpck_require__(847));
|
|
13
|
+
var _utils = __nccwpck_require__(776);
|
|
14
14
|
function _interopRequireDefault(e) {
|
|
15
15
|
return e && e.__esModule ? e : { default: e };
|
|
16
16
|
}
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
}
|
|
113
113
|
var _default = (exports["default"] = lessLoader);
|
|
114
114
|
},
|
|
115
|
-
|
|
115
|
+
776: (__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
116
116
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
117
117
|
exports.errorFactory = errorFactory;
|
|
118
118
|
exports.getLessImplementation = getLessImplementation;
|
|
@@ -312,7 +312,7 @@
|
|
|
312
312
|
928: (module) => {
|
|
313
313
|
module.exports = require("path");
|
|
314
314
|
},
|
|
315
|
-
|
|
315
|
+
847: (module) => {
|
|
316
316
|
module.exports = JSON.parse(
|
|
317
317
|
'{"title":"Less Loader options","type":"object","properties":{"lessOptions":{"description":"Options to pass through to `Less`.","link":"https://github.com/webpack-contrib/less-loader#lessoptions","anyOf":[{"type":"object","additionalProperties":true},{"instanceof":"Function"}]},"additionalData":{"description":"Prepends/Appends `Less` code to the actual entry file.","link":"https://github.com/webpack-contrib/less-loader#additionalData","anyOf":[{"type":"string"},{"instanceof":"Function"}]},"sourceMap":{"description":"Enables/Disables generation of source maps.","link":"https://github.com/webpack-contrib/less-loader#sourcemap","type":"boolean"},"webpackImporter":{"description":"Enables/Disables default `webpack` importer.","link":"https://github.com/webpack-contrib/less-loader#webpackimporter","anyOf":[{"type":"boolean"},{"type":"string","enum":["only"]}]},"implementation":{"description":"The implementation of the `Less` to be used.","link":"https://github.com/webpack-contrib/less-loader#implementation","anyOf":[{"type":"string"},{"type":"object"}]},"lessLogAsWarnOrErr":{"description":"Less warnings and errors will be webpack warnings or errors.","link":"https://github.com/webpack-contrib/less-loader#lesslogaswarnorerr","type":"boolean"}},"additionalProperties":false}',
|
|
318
318
|
);
|
|
@@ -340,6 +340,6 @@
|
|
|
340
340
|
}
|
|
341
341
|
if (typeof __nccwpck_require__ !== "undefined")
|
|
342
342
|
__nccwpck_require__.ab = __dirname + "/";
|
|
343
|
-
var __webpack_exports__ = __nccwpck_require__(
|
|
343
|
+
var __webpack_exports__ = __nccwpck_require__(667);
|
|
344
344
|
module.exports = __webpack_exports__;
|
|
345
345
|
})();
|