@hitslop/cli 0.1.4 → 0.3.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/README.md +7 -3
- package/dist/cli.js +797 -632
- package/dist/module-loader.js +25 -0
- package/package.json +17 -8
- package/templates/svelte/.agents/skills/hitslop-authoring/SKILL.md +15 -2
- package/templates/svelte/.agents/skills/hitslop-authoring/references/storage-and-packages.md +10 -4
- package/templates/svelte/.agents/skills/hitslop-authoring/references/workflow.md +23 -9
- package/templates/svelte/.agents/skills/hitslop-design/SKILL.md +3 -3
- package/templates/svelte/.agents/skills/hitslop-design/references/presentation-and-export.md +14 -11
- package/templates/svelte/AGENTS.md +8 -4
- package/templates/svelte/schema.ts +4 -4
- package/templates/svelte/src/App.svelte +24 -16
- package/templates/svelte/src/Export.svelte +9 -0
- package/templates/svelte/src/Icon.svelte +5 -0
- package/templates/svelte/src/Readout.svelte +13 -0
- package/templates/svelte/src/main.ts +0 -2
- package/templates/svelte/src/styles.css.ts +5 -4
- package/templates/svelte/theme.ts +12 -0
- package/templates/svelte/tsconfig.json +15 -0
- package/templates/svelte/assets/theme.css +0 -10
- package/templates/svelte/src/theme-contract.css.ts +0 -12
package/README.md
CHANGED
|
@@ -7,11 +7,15 @@ apps.
|
|
|
7
7
|
bunx @hitslop/cli init my-slop
|
|
8
8
|
cd my-slop
|
|
9
9
|
bun install
|
|
10
|
+
bun run check
|
|
10
11
|
bun run dev
|
|
11
12
|
```
|
|
12
13
|
|
|
13
14
|
The supported v1 scaffold uses Svelte 5 and includes portable
|
|
14
|
-
`hitslop-authoring` and `hitslop-design` skills.
|
|
15
|
+
`hitslop-authoring` and `hitslop-design` skills. Root `schema.ts` uses TypeBox;
|
|
16
|
+
root `theme.ts` supplies typed CSS variables and generated default CSS. Editor
|
|
17
|
+
inference and `bun run check` need no generated files or running dev server.
|
|
18
|
+
Optional icon/export components share the editor's store. `slop build` emits a
|
|
15
19
|
source-free runtime package; `slop register` adds an immutable local template;
|
|
16
20
|
`slop publish` captures and signs one artifact for the catalog.
|
|
17
21
|
|
|
@@ -19,7 +23,7 @@ Interactive init asks for a required author name and optional URL. For
|
|
|
19
23
|
non-interactive use, pass `--yes --author-name "Your Name"` and optionally
|
|
20
24
|
`--author-url https://example.com`.
|
|
21
25
|
|
|
22
|
-
Documentation: [Authoring](https://github.com/hitslop/hitslop/blob/
|
|
23
|
-
[Package format](https://github.com/hitslop/hitslop/blob/
|
|
26
|
+
Documentation: [Authoring](https://github.com/hitslop/hitslop/blob/master/docs/authoring.md) ·
|
|
27
|
+
[Package format](https://github.com/hitslop/hitslop/blob/master/docs/package-format.md)
|
|
24
28
|
|
|
25
29
|
MIT © 2026 hitSlop contributors.
|