creek 0.4.2 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -4,6 +4,23 @@ 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
+
7
24
  ## 0.4.2
8
25
 
9
26
  ### Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "creek",
3
- "version": "0.4.2",
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.5",
53
+ "@solcreek/cli": "^0.4.6",
54
54
  "@solcreek/runtime": "^0.4.0"
55
55
  }
56
56
  }