creek 0.4.1 → 0.4.3

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/CHANGELOG.md CHANGED
@@ -4,6 +4,36 @@ The umbrella package — re-exports [`@solcreek/cli`](../cli/CHANGELOG.md)
4
4
  under the `creek`/`ck`/`crk` binaries and [`@solcreek/runtime`](../runtime)
5
5
  under `/react` and `/hono` subpaths.
6
6
 
7
+ ## 0.4.3
8
+
9
+ ### Changes
10
+
11
+ - Bundles `@solcreek/cli@^0.4.6`. The CLI bump removes `miniflare`
12
+ from runtime dependencies entirely, taking ~146MB out of every
13
+ first install (workerd + sharp transitive deps were the bulk).
14
+ `npx creek deploy` now installs in ~3–5 seconds instead of ~20s,
15
+ and the sharp postinstall warnings are gone. `creek dev` users
16
+ install miniflare once per project (or globally) on demand.
17
+
18
+ - Also in 0.4.6: the `gh:owner/repo` shorthand for GitHub repos,
19
+ matching the `gh` CLI convention. `npx creek deploy gh:user/repo`
20
+ works alongside the full-URL form.
21
+
22
+ See [`@solcreek/cli@0.4.6`](../cli/CHANGELOG.md) for details.
23
+
24
+ ## 0.4.2
25
+
26
+ ### Changes
27
+
28
+ - Bundles `@solcreek/cli@^0.4.5` and `@solcreek/sdk@^0.4.2`. The CLI
29
+ bump brings: `creek deploy --dry-run` for agent-safe plan preview,
30
+ first-class Astro framework detection so `npx creek deploy <astro-repo-url>`
31
+ just works, a static-site fast path so `echo '<h1>Hi</h1>' > index.html
32
+ && npx creek deploy` finally doesn't crash on the missing package.json,
33
+ and a full doc scrub replacing the dead `--demo` flag with
34
+ `creek deploy --template landing`. See
35
+ [`@solcreek/cli@0.4.5`](../cli/CHANGELOG.md) for the full list.
36
+
7
37
  ## 0.4.1
8
38
 
9
39
  ### Changes
package/README.md CHANGED
@@ -20,10 +20,10 @@ npm install -g creek
20
20
  ## Deploy
21
21
 
22
22
  ```bash
23
- creek deploy # Auto-detect framework, build, deploy
24
- creek deploy --demo # Deploy a sample site in seconds
25
- creek deploy ./dist # Deploy a pre-built directory
26
- creek dev # Local development server
23
+ creek deploy # Auto-detect framework, build, deploy
24
+ creek deploy --template landing # Clone + build + deploy a Vite + React starter
25
+ creek deploy ./dist # Deploy a pre-built directory
26
+ creek dev # Local development server
27
27
  ```
28
28
 
29
29
  ## Server Runtime
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "creek",
3
- "version": "0.4.1",
3
+ "version": "0.4.3",
4
4
  "description": "The Creek deployment platform — CLI and runtime",
5
5
  "type": "module",
6
6
  "bin": {
@@ -50,7 +50,7 @@
50
50
  "directory": "packages/creek"
51
51
  },
52
52
  "dependencies": {
53
- "@solcreek/cli": "^0.4.4",
53
+ "@solcreek/cli": "^0.4.6",
54
54
  "@solcreek/runtime": "^0.4.0"
55
55
  }
56
56
  }