@inkly-org/cli 0.5.1 → 0.5.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.
- package/README.md +1 -1
- package/dist/capture-listener.js +23 -23
- package/dist/cli.js +331 -224
- package/dist/template/demo.html +1 -1
- package/package.json +5 -5
- package/template/demo.html +1 -1
- package/vendor/react-dom-client.mjs +0 -1
- package/vendor/react-dom.mjs +0 -1
- package/vendor/react-jsx-runtime.mjs +0 -1
- package/vendor/react.mjs +0 -1
package/dist/template/demo.html
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
<link rel="modulepreload" href="/__inkly/vendor/react-dom.mjs" crossorigin="anonymous" />
|
|
14
14
|
<link rel="modulepreload" href="/__inkly/vendor/react-dom-client.mjs" crossorigin="anonymous" />
|
|
15
15
|
<link rel="modulepreload" href="/__inkly/vendor/react-jsx-runtime.mjs" crossorigin="anonymous" />
|
|
16
|
-
<!-- Curated theme preset from @inkly/
|
|
16
|
+
<!-- Curated theme preset from @inkly/runtime/themes.
|
|
17
17
|
Loaded after runtime.css so the preset's scoped CSS wins cascade.
|
|
18
18
|
The dev server serves this from the preset registry; the published
|
|
19
19
|
bundle ships the same string baked into its stylesheet. -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkly-org/cli",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
4
4
|
"description": "Inkly CLI — scaffold and locally preview demo configs.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"type": "module",
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"build": "tsup",
|
|
25
25
|
"typecheck": "tsc --noEmit",
|
|
26
26
|
"test": "vitest run",
|
|
27
|
+
"link:local": "npm run build && node scripts/link-local.mjs",
|
|
27
28
|
"prepublishOnly": "npm run build && npm run typecheck && npm run test"
|
|
28
29
|
},
|
|
29
30
|
"dependencies": {
|
|
@@ -32,6 +33,7 @@
|
|
|
32
33
|
"@sentry/node": "^10.56.0",
|
|
33
34
|
"chokidar": "^4.0.1",
|
|
34
35
|
"fflate": "^0.8.3",
|
|
36
|
+
"jsdom": "^25.0.1",
|
|
35
37
|
"mri": "^1.2.0",
|
|
36
38
|
"posthog-node": "^5.35.13",
|
|
37
39
|
"sharp": "^0.34.5",
|
|
@@ -40,10 +42,8 @@
|
|
|
40
42
|
"ws": "^8.20.0"
|
|
41
43
|
},
|
|
42
44
|
"devDependencies": {
|
|
43
|
-
"@inkly/
|
|
44
|
-
"@
|
|
45
|
-
"@inkly/hub-skeleton": "*",
|
|
46
|
-
"@inkly/shared-html-capture": "*",
|
|
45
|
+
"@inkly/runtime": "*",
|
|
46
|
+
"@types/jsdom": "^21.1.7",
|
|
47
47
|
"@types/node": "^20.17.6",
|
|
48
48
|
"@types/ws": "^8.18.1",
|
|
49
49
|
"tsup": "^8.3.5",
|
package/template/demo.html
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
<link rel="modulepreload" href="/__inkly/vendor/react-dom.mjs" crossorigin="anonymous" />
|
|
14
14
|
<link rel="modulepreload" href="/__inkly/vendor/react-dom-client.mjs" crossorigin="anonymous" />
|
|
15
15
|
<link rel="modulepreload" href="/__inkly/vendor/react-jsx-runtime.mjs" crossorigin="anonymous" />
|
|
16
|
-
<!-- Curated theme preset from @inkly/
|
|
16
|
+
<!-- Curated theme preset from @inkly/runtime/themes.
|
|
17
17
|
Loaded after runtime.css so the preset's scoped CSS wins cascade.
|
|
18
18
|
The dev server serves this from the preset registry; the published
|
|
19
19
|
bundle ships the same string baked into its stylesheet. -->
|
package/vendor/react-dom.mjs
CHANGED
package/vendor/react.mjs
CHANGED