extension-develop 4.1.11 → 4.1.12
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/101.mjs +7 -2
- package/dist/839.mjs +2 -1
- package/package.json +1 -1
package/dist/101.mjs
CHANGED
|
@@ -140,8 +140,13 @@ function buildComplete(browser, distDisplayPath, totalBytes) {
|
|
|
140
140
|
const size = 'number' == typeof totalBytes && totalBytes > 0 ? ` (${getHumanSize(totalBytes)})` : '';
|
|
141
141
|
return `${getLoggingPrefix('success')} ${noun} built for production in ${pintor.underline(distDisplayPath)}${size}.`;
|
|
142
142
|
}
|
|
143
|
+
function platformDocsUrl() {
|
|
144
|
+
return String(process.env.EXTENSION_DEV_DOCS_URL || '').trim().replace(/\/+$/, '');
|
|
145
|
+
}
|
|
143
146
|
function buildShareHint() {
|
|
144
|
-
|
|
147
|
+
const docs = platformDocsUrl();
|
|
148
|
+
if (!docs) return '';
|
|
149
|
+
return `${getLoggingPrefix('info')} Send this build to someone for review: ` + pintor.underline(`${docs}/share/unpublished-build-for-review?utm_source=cli-build`);
|
|
145
150
|
}
|
|
146
151
|
function buildFailed(errorCount) {
|
|
147
152
|
const count = Math.max(1, Math.floor(errorCount || 1));
|
|
@@ -699,7 +704,7 @@ async function config_loader_isUsingExperimentalConfig(projectPath) {
|
|
|
699
704
|
}
|
|
700
705
|
return false;
|
|
701
706
|
}
|
|
702
|
-
var package_namespaceObject = /*#__PURE__*/ JSON.parse('{"rE":"4.1.
|
|
707
|
+
var package_namespaceObject = /*#__PURE__*/ JSON.parse('{"rE":"4.1.12","El":{"@prefresh/core":"1.5.9","@prefresh/utils":"1.2.1","@rspack/core":"^2.1.1","@rspack/dev-server":"2.1.0","@rspack/plugin-preact-refresh":"2.0.1","@rspack/plugin-react-refresh":"2.0.2","@vue/compiler-sfc":"3.5.26","acorn":"^8.16.0","browser-extension-manifest-fields":"^2.3.1","case-sensitive-paths-webpack-plugin":"^2.4.0","content-security-policy-parser":"^0.6.0","dotenv":"^17.2.3","es-module-lexer":"^2.1.0","extension-from-store":"^0.2.5","fflate":"^0.8.3","go-git-it":"^5.1.5","ignore":"^7.0.5","less":"4.6.7","less-loader":"13.0.0","parse5-utilities":"^1.0.0","pintor":"0.3.0","postcss":"8.5.23","postcss-loader":"8.2.1","postcss-preset-env":"11.1.1","postcss-scss":"4.0.9","preact":"10.27.3","prefers-yarn":"2.0.1","react-refresh":"0.18.0","sass-loader":"17.0.0","schema-utils":"^4.3.3","svelte-loader":"3.2.4","tiny-glob":"^0.2.9","vue":"3.5.26","vue-loader":"17.4.2","webextension-polyfill":"^0.12.0","webpack-merge":"^6.0.1","webpack-target-webextension":"^2.1.3","ws":"^8.20.1"}}');
|
|
703
708
|
function asAbsolute(p) {
|
|
704
709
|
return __rspack_external_node_path_c5b9b54f.isAbsolute(p) ? p : __rspack_external_node_path_c5b9b54f.resolve(p);
|
|
705
710
|
}
|
package/dist/839.mjs
CHANGED
|
@@ -1192,7 +1192,8 @@ async function extensionBuild(pathOrRemoteUrl, buildOptions) {
|
|
|
1192
1192
|
const zipDisplay = relativeToCwd(artifactPath) || artifactPath;
|
|
1193
1193
|
humanLine(zipArtifactReady(zipDisplay, artifact.size));
|
|
1194
1194
|
}
|
|
1195
|
-
|
|
1195
|
+
const shareHint = buildShareHint();
|
|
1196
|
+
if (shareHint) humanLine(shareHint);
|
|
1196
1197
|
resolve();
|
|
1197
1198
|
}
|
|
1198
1199
|
});
|