@cosmicdrift/kumiko-dev-server 0.12.0 → 0.12.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
@@ -1,5 +1,21 @@
1
1
  # @cosmicdrift/kumiko-dev-server
2
2
 
3
+ ## 0.12.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [597de52]
8
+ - @cosmicdrift/kumiko-framework@0.12.2
9
+ - @cosmicdrift/kumiko-bundled-features@0.12.2
10
+
11
+ ## 0.12.1
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [f2ad7c4]
16
+ - @cosmicdrift/kumiko-framework@0.12.1
17
+ - @cosmicdrift/kumiko-bundled-features@0.12.1
18
+
3
19
  ## 0.12.0
4
20
 
5
21
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cosmicdrift/kumiko-dev-server",
3
- "version": "0.12.0",
3
+ "version": "0.12.2",
4
4
  "description": "Development server bootstrap for Kumiko apps. Bundles the client, mints dev-JWTs, injects the resolved AppSchema, and seeds an admin. Not for production.",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
@@ -48,8 +48,8 @@
48
48
  "kumiko-dev": "./bin/kumiko-dev.ts"
49
49
  },
50
50
  "dependencies": {
51
- "@cosmicdrift/kumiko-bundled-features": "0.12.0",
52
- "@cosmicdrift/kumiko-framework": "0.12.0"
51
+ "@cosmicdrift/kumiko-bundled-features": "0.12.2",
52
+ "@cosmicdrift/kumiko-framework": "0.12.2"
53
53
  },
54
54
  "publishConfig": {
55
55
  "registry": "https://registry.npmjs.org",
@@ -140,6 +140,7 @@ describe("scaffoldDeploy", () => {
140
140
  const df = readFileSync(join(tmp, "deploy", "Dockerfile"), "utf-8");
141
141
  expect(df).toContain("ARG GITHUB_TOKEN=");
142
142
  expect(df).toContain("ARG GITHUB_TOKEN\n");
143
+ // biome-ignore lint/suspicious/noTemplateCurlyInString: shell variable expansion, not a JS template
143
144
  expect(df).toContain("ENV GITHUB_TOKEN=${GITHUB_TOKEN}");
144
145
  });
145
146