@cosmicdrift/kumiko-dev-server 0.188.0 → 0.190.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-dev-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.190.0",
|
|
4
4
|
"description": "Dev-tooling for Kumiko apps: local dev-server bootstrap (runDevApp), scaffolding, codegen. Not shipped into production node_modules — see @cosmicdrift/kumiko-server-runtime for the prod boot path.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -54,9 +54,9 @@
|
|
|
54
54
|
"kumiko-schema-check": "./bin/kumiko-schema-check.ts"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@cosmicdrift/kumiko-bundled-features": "0.
|
|
58
|
-
"@cosmicdrift/kumiko-framework": "0.
|
|
59
|
-
"@cosmicdrift/kumiko-server-runtime": "0.
|
|
57
|
+
"@cosmicdrift/kumiko-bundled-features": "0.190.0",
|
|
58
|
+
"@cosmicdrift/kumiko-framework": "0.190.0",
|
|
59
|
+
"@cosmicdrift/kumiko-server-runtime": "0.190.0",
|
|
60
60
|
"ts-morph": "^28.0.0"
|
|
61
61
|
},
|
|
62
62
|
"publishConfig": {
|
|
@@ -261,11 +261,16 @@ const RELOAD_SNIPPET = `
|
|
|
261
261
|
// `function history()` (prosemirror-history, pulled in by tiptap) silently
|
|
262
262
|
// replaces `window.history` and every pushState afterwards throws. Prod
|
|
263
263
|
// (build-prod-bundle) has always emitted the module form.
|
|
264
|
+
//
|
|
265
|
+
// `interactive-widget=resizes-content` (fw#1918): without it, a mobile
|
|
266
|
+
// keyboard shrinks only the visual viewport, not the layout viewport that
|
|
267
|
+
// `position: fixed` anchors to — a fixed bottom action bar would stay
|
|
268
|
+
// pinned behind the keyboard instead of above it.
|
|
264
269
|
const DEFAULT_HTML = `<!doctype html>
|
|
265
270
|
<html lang="en">
|
|
266
271
|
<head>
|
|
267
272
|
<meta charset="utf-8" />
|
|
268
|
-
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
273
|
+
<meta name="viewport" content="width=device-width,initial-scale=1,interactive-widget=resizes-content" />
|
|
269
274
|
<title>Kumiko</title>
|
|
270
275
|
</head>
|
|
271
276
|
<body>
|