creek 0.4.1 → 0.4.2

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,19 @@ 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.2
8
+
9
+ ### Changes
10
+
11
+ - Bundles `@solcreek/cli@^0.4.5` and `@solcreek/sdk@^0.4.2`. The CLI
12
+ bump brings: `creek deploy --dry-run` for agent-safe plan preview,
13
+ first-class Astro framework detection so `npx creek deploy <astro-repo-url>`
14
+ just works, a static-site fast path so `echo '<h1>Hi</h1>' > index.html
15
+ && npx creek deploy` finally doesn't crash on the missing package.json,
16
+ and a full doc scrub replacing the dead `--demo` flag with
17
+ `creek deploy --template landing`. See
18
+ [`@solcreek/cli@0.4.5`](../cli/CHANGELOG.md) for the full list.
19
+
7
20
  ## 0.4.1
8
21
 
9
22
  ### 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.2",
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.5",
54
54
  "@solcreek/runtime": "^0.4.0"
55
55
  }
56
56
  }