creek 0.4.22 → 0.4.24
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 +19 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,25 @@ 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.24
|
|
8
|
+
|
|
9
|
+
### Changes
|
|
10
|
+
|
|
11
|
+
- Bundles `@solcreek/cli@0.4.24`: `creek init --db` adds a database
|
|
12
|
+
non-interactively (and init says when the prompt was skipped),
|
|
13
|
+
`creek init <name>` sets the project name, doctor and deploy flag
|
|
14
|
+
resources declared without a worker entry, and the "nothing to deploy"
|
|
15
|
+
guidance covers the worker entry alongside the build output.
|
|
16
|
+
|
|
17
|
+
## 0.4.23
|
|
18
|
+
|
|
19
|
+
### Changes
|
|
20
|
+
|
|
21
|
+
- Bundles `@solcreek/cli@0.4.23`: `creek init` help lists the files it
|
|
22
|
+
creates, `creek doctor --json` prints a human summary to stderr, the two
|
|
23
|
+
SQLite doctor findings cross-reference each other, and `… attach --to`
|
|
24
|
+
shows a `<project>` value placeholder.
|
|
25
|
+
|
|
7
26
|
## 0.4.22
|
|
8
27
|
|
|
9
28
|
### Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "creek",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.24",
|
|
4
4
|
"description": "The Creek deployment platform — CLI and runtime",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"directory": "packages/creek"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@solcreek/cli": "^0.4.
|
|
54
|
+
"@solcreek/cli": "^0.4.24",
|
|
55
55
|
"@solcreek/runtime": "^0.4.0"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {}
|