extension-develop 3.5.0 → 3.5.1
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.cjs +6 -3
- package/package.json +1 -1
package/dist/module.cjs
CHANGED
|
@@ -129279,6 +129279,9 @@ var __webpack_modules__ = {
|
|
|
129279
129279
|
if (external_fs_.existsSync(external_path_.join(distFirefox, 'manifest.json'))) return distFirefox;
|
|
129280
129280
|
return candidate;
|
|
129281
129281
|
}
|
|
129282
|
+
function normalizeFirefoxAddonPath(addonPath) {
|
|
129283
|
+
return String(addonPath).replace(/\\/g, '/');
|
|
129284
|
+
}
|
|
129282
129285
|
async function getAddonsActorWithRetry(client, cached, tries = 40, delayMs = 250) {
|
|
129283
129286
|
if (cached) return cached;
|
|
129284
129287
|
let addonsActor;
|
|
@@ -129303,7 +129306,7 @@ var __webpack_modules__ = {
|
|
|
129303
129306
|
}
|
|
129304
129307
|
function computeCandidateAddonPaths(compilation, extensionsToLoad, projectContext) {
|
|
129305
129308
|
const projectPath = compilation.options.context || projectContext || process.cwd();
|
|
129306
|
-
return extensionsToLoad.map((ext)=>resolveAddonDirectory(projectPath, ext));
|
|
129309
|
+
return extensionsToLoad.map((ext)=>normalizeFirefoxAddonPath(resolveAddonDirectory(projectPath, ext)));
|
|
129307
129310
|
}
|
|
129308
129311
|
async function waitForManagerWelcome(client) {
|
|
129309
129312
|
for(let i = 0; i < 20; i++){
|
|
@@ -133090,7 +133093,7 @@ var __webpack_modules__ = {
|
|
|
133090
133093
|
return `${getLoggingPrefix('info')} Using ${pintor__rspack_import_2_default().yellow(integration)}.`;
|
|
133091
133094
|
}
|
|
133092
133095
|
function installingDependencies() {
|
|
133093
|
-
return `${getLoggingPrefix('info')} Installing project dependencies
|
|
133096
|
+
return `${getLoggingPrefix('info')} Installing project dependencies... ${pintor__rspack_import_2_default().gray('(This may take a moment)')}`;
|
|
133094
133097
|
}
|
|
133095
133098
|
function debugDirs(manifestDir, packageJsonDir) {
|
|
133096
133099
|
return `${getLoggingPrefix('info')} Directories\n${pintor__rspack_import_2_default().gray('MANIFEST_DIR')} ${pintor__rspack_import_2_default().underline(manifestDir)}\n${pintor__rspack_import_2_default().gray('PACKAGE_JSON_DIR')} ${pintor__rspack_import_2_default().underline(packageJsonDir)}`;
|
|
@@ -133716,7 +133719,7 @@ var __webpack_modules__ = {
|
|
|
133716
133719
|
},
|
|
133717
133720
|
"./package.json" (module) {
|
|
133718
133721
|
"use strict";
|
|
133719
|
-
module.exports = JSON.parse('{"rE":"3.5.
|
|
133722
|
+
module.exports = JSON.parse('{"rE":"3.5.1","El":{"@rspack/core":"^1.7.5","@rspack/dev-server":"^1.1.5","@swc/core":"^1.15.8","@swc/helpers":"^0.5.18","adm-zip":"^0.5.16","browser-extension-manifest-fields":"^2.2.1","case-sensitive-paths-webpack-plugin":"^2.4.0","chrome-location2":"4.0.0","chromium-location":"2.0.0","content-security-policy-parser":"^0.6.0","cross-spawn":"^7.0.6","dotenv":"^17.2.3","edge-location":"2.2.0","firefox-location2":"3.0.0","go-git-it":"^5.1.1","ignore":"^7.0.5","loader-utils":"^3.3.1","magic-string":"^0.30.21","parse5":"^8.0.0","parse5-utilities":"^1.0.0","pintor":"0.3.0","schema-utils":"^4.3.3","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.19.0"}}');
|
|
133720
133723
|
}
|
|
133721
133724
|
};
|
|
133722
133725
|
var __webpack_module_cache__ = {};
|
package/package.json
CHANGED