siteplane 0.1.50 → 0.1.51
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/README.md +2 -2
- package/dist/bin/siteplane.js +2 -2
- package/dist/index.js +1 -1
- package/dist/next.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -72,8 +72,8 @@ Before starting, add `.siteplane/credentials.json` to the repository’s `.gitig
|
|
|
72
72
|
unprotected credentials before any provisioning request.
|
|
73
73
|
|
|
74
74
|
```bash
|
|
75
|
-
npx -y siteplane@0.1.
|
|
76
|
-
npx -y siteplane@0.1.
|
|
75
|
+
npx -y siteplane@0.1.51 setup start --modules editing --instructions-file instructions.txt
|
|
76
|
+
npx -y siteplane@0.1.51 setup context
|
|
77
77
|
```
|
|
78
78
|
|
|
79
79
|
Start performs read-only preflight and saves the installation key and original request privately before the
|
package/dist/bin/siteplane.js
CHANGED
|
@@ -3880,7 +3880,7 @@ async function inspectSetupLocalProject(projectDir) {
|
|
|
3880
3880
|
fail("package_manager_conflict", "Application and workspace packageManager declarations disagree.");
|
|
3881
3881
|
if (declared && !new RegExp(`^${name2}@\\d+\\.\\d+\\.\\d+$`, "u").test(declared))
|
|
3882
3882
|
fail("package_manager_conflict", "Declare an exact supported npm/pnpm packageManager version matching the canonical lockfile.");
|
|
3883
|
-
const localVersion = (await setupProcess(declared ? "npx" : name2, declared ? ["--yes", declared, "--version"] : ["--version"], { cwd: lockfileRoot })).trim();
|
|
3883
|
+
const localVersion = (await setupProcess(declared ? "npx" : name2, declared ? ["--yes", "--package", declared, name2, "--version"] : ["--version"], { cwd: lockfileRoot })).trim();
|
|
3884
3884
|
if (!(name2 === "npm" ? stable(localVersion, 10) : stable(localVersion, 9) || stable(localVersion, 10)))
|
|
3885
3885
|
fail("unsupported_package_manager_version", "Use npm 10 or pnpm 9/10; other versions are outside the initial setup support range.");
|
|
3886
3886
|
if (declared && declared !== `${name2}@${localVersion}`)
|
|
@@ -5461,7 +5461,7 @@ Run setup context for the current user instructions and authorized modules. Keep
|
|
|
5461
5461
|
}));
|
|
5462
5462
|
const packageManifest = JSON.parse(await readFile10(join10(directory, "package.json"), "utf8"));
|
|
5463
5463
|
const pm = preflight.local.packageManager;
|
|
5464
|
-
const command = (args) => setupProcess("npx", ["--yes", `${pm.name}@${pm.version}`, ...args], {
|
|
5464
|
+
const command = (args) => setupProcess("npx", ["--yes", "--package", `${pm.name}@${pm.version}`, pm.name, ...args], {
|
|
5465
5465
|
cwd: directory,
|
|
5466
5466
|
timeoutMs: 3e5
|
|
5467
5467
|
});
|
package/dist/index.js
CHANGED
|
@@ -2948,7 +2948,7 @@ async function inspectSetupLocalProject(projectDir) {
|
|
|
2948
2948
|
fail("package_manager_conflict", "Application and workspace packageManager declarations disagree.");
|
|
2949
2949
|
if (declared && !new RegExp(`^${name2}@\\d+\\.\\d+\\.\\d+$`, "u").test(declared))
|
|
2950
2950
|
fail("package_manager_conflict", "Declare an exact supported npm/pnpm packageManager version matching the canonical lockfile.");
|
|
2951
|
-
const localVersion = (await setupProcess(declared ? "npx" : name2, declared ? ["--yes", declared, "--version"] : ["--version"], { cwd: lockfileRoot })).trim();
|
|
2951
|
+
const localVersion = (await setupProcess(declared ? "npx" : name2, declared ? ["--yes", "--package", declared, name2, "--version"] : ["--version"], { cwd: lockfileRoot })).trim();
|
|
2952
2952
|
if (!(name2 === "npm" ? stable(localVersion, 10) : stable(localVersion, 9) || stable(localVersion, 10)))
|
|
2953
2953
|
fail("unsupported_package_manager_version", "Use npm 10 or pnpm 9/10; other versions are outside the initial setup support range.");
|
|
2954
2954
|
if (declared && declared !== `${name2}@${localVersion}`)
|
package/dist/next.js
CHANGED
|
@@ -2757,7 +2757,7 @@ async function inspectSetupLocalProject(projectDir) {
|
|
|
2757
2757
|
fail("package_manager_conflict", "Application and workspace packageManager declarations disagree.");
|
|
2758
2758
|
if (declared && !new RegExp(`^${name2}@\\d+\\.\\d+\\.\\d+$`, "u").test(declared))
|
|
2759
2759
|
fail("package_manager_conflict", "Declare an exact supported npm/pnpm packageManager version matching the canonical lockfile.");
|
|
2760
|
-
const localVersion = (await setupProcess(declared ? "npx" : name2, declared ? ["--yes", declared, "--version"] : ["--version"], { cwd: lockfileRoot })).trim();
|
|
2760
|
+
const localVersion = (await setupProcess(declared ? "npx" : name2, declared ? ["--yes", "--package", declared, name2, "--version"] : ["--version"], { cwd: lockfileRoot })).trim();
|
|
2761
2761
|
if (!(name2 === "npm" ? stable(localVersion, 10) : stable(localVersion, 9) || stable(localVersion, 10)))
|
|
2762
2762
|
fail("unsupported_package_manager_version", "Use npm 10 or pnpm 9/10; other versions are outside the initial setup support range.");
|
|
2763
2763
|
if (declared && declared !== `${name2}@${localVersion}`)
|