extension-develop 3.0.0-next.47 → 3.0.0-next.48
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/dist/module.js +8 -4
- package/package.json +1 -1
package/dist/module.js
CHANGED
|
@@ -5100,7 +5100,7 @@ var __webpack_modules__ = {
|
|
|
5100
5100
|
},
|
|
5101
5101
|
"./package.json": function(module) {
|
|
5102
5102
|
"use strict";
|
|
5103
|
-
module.exports = JSON.parse('{"i8":"3.0.0-next.
|
|
5103
|
+
module.exports = JSON.parse('{"i8":"3.0.0-next.48","HO":{"@rspack/core":"^1.6.3","@rspack/dev-server":"^1.1.4","@swc/core":"^1.13.2","@swc/helpers":"^0.5.15","adm-zip":"^0.5.16","browser-extension-manifest-fields":"^2.2.1","case-sensitive-paths-webpack-plugin":"^2.4.0","chokidar":"^4.0.1","chrome-location2":"3.2.1","chromium-location":"1.2.3","content-security-policy-parser":"^0.6.0","cross-spawn":"^7.0.6","dotenv":"^16.4.7","edge-location":"^2.1.1","firefox-location2":"2.1.1","go-git-it":"^5.0.0","ignore":"^6.0.2","loader-utils":"^3.3.1","magic-string":"^0.30.10","package-manager-detector":"^0.2.7","parse5":"^7.2.1","parse5-utilities":"^1.0.0","pintor":"0.3.0","schema-utils":"^4.2.0","tiny-glob":"^0.2.9","unique-names-generator":"^4.7.1","webextension-polyfill":"^0.12.0","webpack-merge":"^6.0.1","webpack-target-webextension":"^2.1.3","ws":"^8.18.0"}}');
|
|
5104
5104
|
}
|
|
5105
5105
|
};
|
|
5106
5106
|
var __webpack_module_cache__ = {};
|
|
@@ -6509,10 +6509,14 @@ var __webpack_exports__ = {};
|
|
|
6509
6509
|
function getProjectPostcssImpl() {
|
|
6510
6510
|
try {
|
|
6511
6511
|
const req = (0, external_module_namespaceObject.createRequire)(external_path_.join(projectPath, 'package.json'));
|
|
6512
|
-
|
|
6512
|
+
const mod = req('postcss');
|
|
6513
|
+
if (mod && 'object' == typeof mod && 'default' in mod) return mod.default;
|
|
6514
|
+
return mod;
|
|
6513
6515
|
} catch {
|
|
6514
6516
|
try {
|
|
6515
|
-
|
|
6517
|
+
const mod = __webpack_require__("../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/postcss.js");
|
|
6518
|
+
if (mod && 'object' == typeof mod && 'default' in mod) return mod.default;
|
|
6519
|
+
return mod;
|
|
6516
6520
|
} catch {
|
|
6517
6521
|
return;
|
|
6518
6522
|
}
|
|
@@ -6529,7 +6533,7 @@ var __webpack_exports__ = {};
|
|
|
6529
6533
|
for (const base of bases)try {
|
|
6530
6534
|
const req = (0, external_module_namespaceObject.createRequire)(external_path_.join(base, 'package.json'));
|
|
6531
6535
|
const mod = req(name);
|
|
6532
|
-
if (mod && 'object' == typeof mod && 'default' in mod) return mod.default;
|
|
6536
|
+
if (mod && 'object' == typeof mod && 'default' in mod && ('function' == typeof mod.default || 'object' == typeof mod.default && null !== mod.default && 'postcssPlugin' in mod.default)) return mod.default;
|
|
6533
6537
|
return mod;
|
|
6534
6538
|
} catch (e) {
|
|
6535
6539
|
lastError = e;
|