siteplane 0.1.58 → 0.1.60
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 +10 -6
- package/dist/bin/siteplane.js +99 -2184
- package/dist/index.js +72 -73
- package/dist/next.js +217 -2462
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,9 +3,10 @@
|
|
|
3
3
|
**Image-policy preparation:** When the scan includes image fields, `withSiteplane` prepares
|
|
4
4
|
Next Image and existing Next-config CSP headers for Siteplane's image route and your website's
|
|
5
5
|
`/siteplane-assets/` path. Existing image sources stay in place. Local builds require the same public HTTPS
|
|
6
|
-
`SITEPLANE_SITE_ORIGIN` supplied by `setup deploy`.
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
`SITEPLANE_SITE_ORIGIN` supplied by `setup deploy`. The wrapper adds only those exact patterns: existing
|
|
7
|
+
sources, custom loaders and redirect settings remain unchanged. Preflight still flags custom loaders and CSP
|
|
8
|
+
in middleware, proxy or app source for explicit delivery checks. Keep existing policies and verify Siteplane
|
|
9
|
+
images through the website's actual renderer. This preparation does not authorize hosting.
|
|
9
10
|
|
|
10
11
|
Public Siteplane CLI for connected-site setup, field synchronization, Analytics
|
|
11
12
|
instrumentation and Booking integration.
|
|
@@ -81,7 +82,10 @@ siteplane setup deploy --wait
|
|
|
81
82
|
Commit only intended source before deploy. The CLI securely transfers its Production environment, adopts or
|
|
82
83
|
starts one matching deployment and verifies the actual build and signed runtime. Unchanged resume creates no
|
|
83
84
|
new deployment. A saved 15-minute provider deadline and operation identity prevent blind retries after response
|
|
84
|
-
loss.
|
|
85
|
+
loss. If that deadline expires after the deploy was requested, rerun the same command: each invocation gets a
|
|
86
|
+
bounded 120-second readback of that same operation. A ready result is adopted; a still-running or unreachable
|
|
87
|
+
provider remains resumable and never authorizes a second deploy. Uploads use committed source in a temporary
|
|
88
|
+
checkout; local credentials are never copied into it.
|
|
85
89
|
|
|
86
90
|
For a lost connection, the owner chooses **Replace local connection** in the same open setup. Its new grant
|
|
87
91
|
preserves the Site, Run, runtime key, revalidation generation, selected fields and provider admin-session secret.
|
|
@@ -98,8 +102,8 @@ Before starting, add `.siteplane/credentials.json` to the repository’s `.gitig
|
|
|
98
102
|
unprotected credentials before any provisioning request.
|
|
99
103
|
|
|
100
104
|
```bash
|
|
101
|
-
npx -y siteplane@0.1.
|
|
102
|
-
npx -y siteplane@0.1.
|
|
105
|
+
npx -y siteplane@0.1.60 setup start --modules editing --instructions-file instructions.txt
|
|
106
|
+
npx -y siteplane@0.1.60 setup context
|
|
103
107
|
```
|
|
104
108
|
|
|
105
109
|
Start performs read-only preflight and saves the installation key and original request privately before the
|