shiply-cli 0.14.3 → 0.14.5
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 +9 -1
- package/dist/claim.js +17 -5
- package/dist/domain.js +64 -31
- package/dist/index.js +3 -0
- package/dist/psl.data.js +6943 -0
- package/dist/publish.js +1 -0
- package/package.json +1 -1
- package/skill/SKILL.md +10 -1
package/dist/publish.js
CHANGED
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -5,6 +5,13 @@ description: Publish static sites to the web instantly with shiply.now and manag
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
> **IMPORTANT — npm package name is `shiply-cli`, NOT `shiply`.** A different
|
|
9
|
+
> npm package named `shiply` (an auto-commit watcher) is published by someone
|
|
10
|
+
> else — installing it does NOT give you the shiply.now CLI. Always use
|
|
11
|
+
> `npx -y shiply-cli@latest …` or `npm install -g shiply-cli`. The CLI binary
|
|
12
|
+
> on PATH is still named `shiply` once installed; the warning is only about
|
|
13
|
+
> the npm package name.
|
|
14
|
+
|
|
8
15
|
> **Skill freshness check.** Shiply ships new capabilities weekly. If this
|
|
9
16
|
> file's "Last updated" below is more than 7 days old, re-install it with
|
|
10
17
|
> `npx -y shiply-cli@latest skill --force` OR fetch `https://shiply.now/skill.md`
|
|
@@ -122,7 +129,9 @@ Newer capabilities (use when relevant):
|
|
|
122
129
|
|
|
123
130
|
### 2. CLI
|
|
124
131
|
```bash
|
|
125
|
-
npm
|
|
132
|
+
# IMPORTANT: the npm package is `shiply-cli`, not `shiply` (different package).
|
|
133
|
+
npm i -g shiply-cli # or: npx -y shiply-cli@latest <command>
|
|
134
|
+
# or: curl -fsSL https://shiply.now/install.sh | bash
|
|
126
135
|
shiply publish ./dir # live URL + confetti
|
|
127
136
|
shiply publish ./dir # run AGAIN after edits → updates the SAME site
|
|
128
137
|
shiply status <slug> --wait # SSL + readiness; prints SSL_READY / SITE_READY
|