@superblog/cli 0.1.5 → 0.1.6
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 +4 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -47,6 +47,10 @@ A dev session builds a subset of posts for speed; `template preview` builds
|
|
|
47
47
|
every post, so it is the check before publishing. Nothing your readers see
|
|
48
48
|
changes until `template deploy`.
|
|
49
49
|
|
|
50
|
+
A preview URL is private and noindexed, and it is removed 3 hours after it is
|
|
51
|
+
built. Share it while you are collecting opinions; do not link to it from
|
|
52
|
+
anywhere permanent.
|
|
53
|
+
|
|
50
54
|
## Commands
|
|
51
55
|
|
|
52
56
|
| Command | What it does |
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superblog/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Build custom templates for your Superblog: develop with live reload, preview, and deploy.",
|
|
5
5
|
"homepage": "https://superblog.ai",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"bin": { "superblog": "bin.js" },
|
|
8
8
|
"engines": { "node": ">=18" },
|
|
9
9
|
"optionalDependencies": {
|
|
10
|
-
"@superblog/darwin-arm64": "0.1.
|
|
11
|
-
"@superblog/darwin-x64": "0.1.
|
|
12
|
-
"@superblog/linux-x64": "0.1.
|
|
13
|
-
"@superblog/linux-arm64": "0.1.
|
|
14
|
-
"@superblog/windows-x64": "0.1.
|
|
10
|
+
"@superblog/darwin-arm64": "0.1.6",
|
|
11
|
+
"@superblog/darwin-x64": "0.1.6",
|
|
12
|
+
"@superblog/linux-x64": "0.1.6",
|
|
13
|
+
"@superblog/linux-arm64": "0.1.6",
|
|
14
|
+
"@superblog/windows-x64": "0.1.6"
|
|
15
15
|
}
|
|
16
16
|
}
|