extension-develop 3.5.0-next.19 → 3.5.0-next.20
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 -10
- package/package.json +1 -1
package/dist/module.cjs
CHANGED
|
@@ -131138,14 +131138,12 @@ var __webpack_modules__ = {
|
|
|
131138
131138
|
}
|
|
131139
131139
|
async function installOptionalDependenciesBatch(plans) {
|
|
131140
131140
|
if (!plans.length) return;
|
|
131141
|
-
const
|
|
131142
|
-
if (0 === executablePlans.length) return;
|
|
131143
|
-
const totalDeps = executablePlans.reduce((sum, plan)=>sum + plan.dependencies.length, 0);
|
|
131141
|
+
const totalDeps = plans.reduce((sum, plan)=>sum + plan.dependencies.length, 0);
|
|
131144
131142
|
console.log(`${pintor__rspack_import_3_default().gray('►►►')} Found ${pintor__rspack_import_3_default().yellow(String(totalDeps))} specialized dependencies needing installation...`);
|
|
131145
|
-
for (const [index, plan] of
|
|
131143
|
+
for (const [index, plan] of plans.entries()){
|
|
131146
131144
|
const didInstall = await installOptionalDependencies(plan.integration, plan.dependencies, {
|
|
131147
131145
|
index: index + 1,
|
|
131148
|
-
total:
|
|
131146
|
+
total: plans.length
|
|
131149
131147
|
});
|
|
131150
131148
|
if (!didInstall) return false;
|
|
131151
131149
|
}
|
|
@@ -133523,7 +133521,7 @@ var __webpack_modules__ = {
|
|
|
133523
133521
|
},
|
|
133524
133522
|
"./package.json" (module) {
|
|
133525
133523
|
"use strict";
|
|
133526
|
-
module.exports = JSON.parse('{"rE":"3.5.0-next.
|
|
133524
|
+
module.exports = JSON.parse('{"rE":"3.5.0-next.20","El":{"@rspack/core":"^1.7.2","@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"}}');
|
|
133527
133525
|
}
|
|
133528
133526
|
};
|
|
133529
133527
|
var __webpack_module_cache__ = {};
|
|
@@ -134141,10 +134139,8 @@ var __webpack_exports__ = {};
|
|
|
134141
134139
|
const usesLess = (0, less.K)(projectPath);
|
|
134142
134140
|
const usesPostCss = (0, postcss.A)(projectPath);
|
|
134143
134141
|
if (usesTypeScript) {
|
|
134144
|
-
|
|
134145
|
-
|
|
134146
|
-
usedIntegrations.push('TypeScript');
|
|
134147
|
-
}
|
|
134142
|
+
usedIntegrations.push('TypeScript');
|
|
134143
|
+
if (!canResolveFromProject("typescript", projectPath)) addMissing('TypeScript', "typescript");
|
|
134148
134144
|
}
|
|
134149
134145
|
if (usesReact) {
|
|
134150
134146
|
if (!canResolve('react-refresh', projectPath)) addMissing('React', 'react-refresh');
|
package/package.json
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"webpack/webpack-lib/build-dependencies.json"
|
|
25
25
|
],
|
|
26
26
|
"name": "extension-develop",
|
|
27
|
-
"version": "3.5.0-next.
|
|
27
|
+
"version": "3.5.0-next.20",
|
|
28
28
|
"description": "Develop, build, preview, and package Extension.js projects.",
|
|
29
29
|
"author": {
|
|
30
30
|
"name": "Cezar Augusto",
|