@cosmicdrift/kumiko-dev-server 0.12.1 → 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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-dev-server",
|
|
3
|
-
"version": "0.12.
|
|
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.
|
|
52
|
-
"@cosmicdrift/kumiko-framework": "0.12.
|
|
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
|
|