@bigbrainforge/setup 3.18.0 → 3.19.0
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/setup.cjs +4 -4
- package/package.json +1 -1
package/dist/setup.cjs
CHANGED
|
@@ -374,7 +374,7 @@ var require_npmrc_license = __commonJS({
|
|
|
374
374
|
"../forge-plugin/lib/npmrc-license.js"(exports2, module2) {
|
|
375
375
|
var fs = require("node:fs");
|
|
376
376
|
var path2 = require("node:path");
|
|
377
|
-
var DIST_HOST = "
|
|
377
|
+
var DIST_HOST = "licensing.bigbrainforge.com";
|
|
378
378
|
var LEGACY_HOST = "npm.pkg.github.com";
|
|
379
379
|
var SCOPE_LINE = `@bigbrainforge:registry=https://${DIST_HOST}/npm/`;
|
|
380
380
|
function authLine(license) {
|
|
@@ -926,7 +926,7 @@ var {
|
|
|
926
926
|
var { resolveSpawn } = require_exec_cli();
|
|
927
927
|
var LICENSE_RE = /^forge_lic_[0-9A-Za-z]{43}$/;
|
|
928
928
|
var DEFAULT_LICENSING_URL = "https://licensing.bigbrainforge.com";
|
|
929
|
-
var DEFAULT_DIST_URL = "https://
|
|
929
|
+
var DEFAULT_DIST_URL = "https://licensing.bigbrainforge.com";
|
|
930
930
|
var RERUN_SETUP_CMD = "npx --@bigbrainforge:registry=https://registry.npmjs.org @bigbrainforge/setup";
|
|
931
931
|
function runShim(io, cmd, args) {
|
|
932
932
|
const platform = io.platform ?? process.platform;
|
|
@@ -1090,7 +1090,7 @@ async function runSetup(argv, io = defaultIo()) {
|
|
|
1090
1090
|
io,
|
|
1091
1091
|
"distribution plane",
|
|
1092
1092
|
`manifest fetch failed (HTTP ${mRes.status})`,
|
|
1093
|
-
`check network egress to ${distUrl}`
|
|
1093
|
+
mRes.status === 404 ? `the distribution plane may not be enabled on this Forge server yet (it answers 404 while disabled) \u2014 contact your Forge administrator` : `check network egress to ${distUrl}`
|
|
1094
1094
|
);
|
|
1095
1095
|
}
|
|
1096
1096
|
let manifest;
|
|
@@ -1130,7 +1130,7 @@ async function runSetup(argv, io = defaultIo()) {
|
|
|
1130
1130
|
io,
|
|
1131
1131
|
"distribution plane",
|
|
1132
1132
|
`bundle download failed (HTTP ${tRes.status})`,
|
|
1133
|
-
`check network egress to ${distUrl}`
|
|
1133
|
+
tRes.status === 404 ? `the distribution plane may not be enabled on this Forge server yet (it answers 404 while disabled) \u2014 contact your Forge administrator` : `check network egress to ${distUrl}`
|
|
1134
1134
|
);
|
|
1135
1135
|
}
|
|
1136
1136
|
let staged;
|
package/package.json
CHANGED