extension-develop 3.5.0-next.2 → 3.5.0-next.4
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 +1 -1
- package/dist/postinstall.cjs +5 -1
- package/package.json +1 -1
package/dist/module.cjs
CHANGED
|
@@ -133609,7 +133609,7 @@ var __webpack_modules__ = {
|
|
|
133609
133609
|
},
|
|
133610
133610
|
"./package.json" (module) {
|
|
133611
133611
|
"use strict";
|
|
133612
|
-
module.exports = JSON.parse('{"rE":"3.5.0-next.
|
|
133612
|
+
module.exports = JSON.parse('{"rE":"3.5.0-next.4","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.0.3","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"}}');
|
|
133613
133613
|
}
|
|
133614
133614
|
};
|
|
133615
133615
|
var __webpack_module_cache__ = {};
|
package/dist/postinstall.cjs
CHANGED
|
@@ -128027,7 +128027,7 @@ var __webpack_exports__ = {};
|
|
|
128027
128027
|
var external_path_ = __webpack_require__("path");
|
|
128028
128028
|
var external_pintor_ = __webpack_require__("pintor");
|
|
128029
128029
|
var external_pintor_default = /*#__PURE__*/ __webpack_require__.n(external_pintor_);
|
|
128030
|
-
var package_namespaceObject = JSON.parse('{"rE":"3.5.0-next.
|
|
128030
|
+
var package_namespaceObject = JSON.parse('{"rE":"3.5.0-next.4"}');
|
|
128031
128031
|
function getLoggingPrefix(type) {
|
|
128032
128032
|
const isAuthor = 'true' === process.env.EXTENSION_AUTHOR_MODE;
|
|
128033
128033
|
if (isAuthor) {
|
|
@@ -128731,6 +128731,10 @@ var __webpack_exports__ = {};
|
|
|
128731
128731
|
});
|
|
128732
128732
|
}
|
|
128733
128733
|
function isNpxExec() {
|
|
128734
|
+
const command = process.env.npm_config_command || '';
|
|
128735
|
+
if ('exec' === command || 'dlx' === command || 'npx' === command) return true;
|
|
128736
|
+
const cwd = process.cwd();
|
|
128737
|
+
if (cwd.includes(`${external_path_.sep}.npm${external_path_.sep}_npx${external_path_.sep}`) || cwd.includes(`${external_path_.sep}.pnpm${external_path_.sep}dlx${external_path_.sep}`) || cwd.includes(`${external_path_.sep}.bun${external_path_.sep}install${external_path_.sep}cache${external_path_.sep}`)) return true;
|
|
128734
128738
|
const argv = process.env.npm_config_argv;
|
|
128735
128739
|
if (argv) try {
|
|
128736
128740
|
const parsed = JSON.parse(argv);
|
package/package.json
CHANGED