getfilepress 0.1.0 → 0.1.1
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
CHANGED
|
@@ -35,7 +35,7 @@ The site folder only needs:
|
|
|
35
35
|
- `posts/` — Markdown posts (`/posts/<slug>`)
|
|
36
36
|
- `pages/` — optional static Markdown pages (`about.md` → `/about`)
|
|
37
37
|
- `static/` — favicon, images, etc.
|
|
38
|
-
- `package.json` — depends on this engine (`"getfilepress": "link:../filepress"` locally, `"getfilepress": "^0.1.
|
|
38
|
+
- `package.json` — depends on this engine (`"getfilepress": "link:../filepress"` locally, `"getfilepress": "^0.1.1"` from npm, or a git URL + tag/SHA)
|
|
39
39
|
|
|
40
40
|
### Import an existing site
|
|
41
41
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@filepress/app",
|
|
3
3
|
"private": true,
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "The single SvelteKit app for filepress. Sites under sites/* supply config + posts + static; this package owns all routes.",
|
|
7
7
|
"scripts": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@filepress/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"private": true,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Reusable engine for filepress sites: content loader, Markdown pipeline, feed/sitemap builders, config helper, Essay theme, and shared Svelte components.",
|
package/scripts/create-site.mjs
CHANGED
|
@@ -152,8 +152,8 @@ if (external) {
|
|
|
152
152
|
devDependencies: {
|
|
153
153
|
// link: uses the live engine tree (with its workspace node_modules).
|
|
154
154
|
// Alternatives after publish / push:
|
|
155
|
-
// "getfilepress": "^0.1.
|
|
156
|
-
// "getfilepress": "github:Catalyst-Forge-LLC/filepress#v0.1.
|
|
155
|
+
// "getfilepress": "^0.1.1"
|
|
156
|
+
// "getfilepress": "github:Catalyst-Forge-LLC/filepress#v0.1.1"
|
|
157
157
|
getfilepress: `link:${relToEngine}`
|
|
158
158
|
}
|
|
159
159
|
},
|
|
@@ -203,13 +203,13 @@ override the default Essay theme.
|
|
|
203
203
|
\`link:\` only works on your machine. For CI/hosting, switch to npm or a git pin:
|
|
204
204
|
|
|
205
205
|
\`\`\`json
|
|
206
|
-
"getfilepress": "^0.1.
|
|
206
|
+
"getfilepress": "^0.1.1"
|
|
207
207
|
\`\`\`
|
|
208
208
|
|
|
209
209
|
or:
|
|
210
210
|
|
|
211
211
|
\`\`\`json
|
|
212
|
-
"getfilepress": "github:Catalyst-Forge-LLC/filepress#v0.1.
|
|
212
|
+
"getfilepress": "github:Catalyst-Forge-LLC/filepress#v0.1.1"
|
|
213
213
|
\`\`\`
|
|
214
214
|
|
|
215
215
|
| Setting | Value |
|