@hitslop/cli 0.2.0 → 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 +2 -2
- package/dist/cli.js +3 -3
- package/package.json +2 -2
- package/templates/svelte/src/main.ts +0 -2
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ Interactive init asks for a required author name and optional URL. For
|
|
|
23
23
|
non-interactive use, pass `--yes --author-name "Your Name"` and optionally
|
|
24
24
|
`--author-url https://example.com`.
|
|
25
25
|
|
|
26
|
-
Documentation: [Authoring](https://github.com/hitslop/hitslop/blob/
|
|
27
|
-
[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)
|
|
28
28
|
|
|
29
29
|
MIT © 2026 hitSlop contributors.
|
package/dist/cli.js
CHANGED
|
@@ -21,7 +21,7 @@ var package_default;
|
|
|
21
21
|
var init_package = __esm(() => {
|
|
22
22
|
package_default = {
|
|
23
23
|
name: "@hitslop/cli",
|
|
24
|
-
version: "0.
|
|
24
|
+
version: "0.3.0",
|
|
25
25
|
description: "Create, develop, build, register, and publish hitSlop apps.",
|
|
26
26
|
license: "MIT",
|
|
27
27
|
repository: {
|
|
@@ -49,7 +49,7 @@ var init_package = __esm(() => {
|
|
|
49
49
|
},
|
|
50
50
|
dependencies: {
|
|
51
51
|
"@crustjs/core": "^0.0.19",
|
|
52
|
-
"@hitslop/schema": "^0.
|
|
52
|
+
"@hitslop/schema": "^0.3.0",
|
|
53
53
|
"@noble/ed25519": "^3.2.0",
|
|
54
54
|
"fast-png": "^8.0.0",
|
|
55
55
|
fflate: "^0.8.3",
|
|
@@ -743,7 +743,7 @@ async function scaffold(destination, options) {
|
|
|
743
743
|
register: "slop register",
|
|
744
744
|
publish: "slop publish"
|
|
745
745
|
},
|
|
746
|
-
dependencies: { "@hitslop/runtime": "^0.
|
|
746
|
+
dependencies: { "@hitslop/runtime": "^0.3.0", "@hitslop/svelte": "^0.3.0", "bits-ui": "^2.19.0", svelte: "^5.57.0", typebox: "^1.3.26" },
|
|
747
747
|
devDependencies: { "@hitslop/cli": `^${package_default.version}`, "@sveltejs/vite-plugin-svelte": "^7.3.0", "@vanilla-extract/css": "^1.21.2", "@vanilla-extract/vite-plugin": "^5.2.6", vite: "^8.2.2", "svelte-check": "^4.7.6", "@typescript/native": "npm:typescript@^7.0.2", typescript: "^6.0.3" }
|
|
748
748
|
}, null, 2) + `
|
|
749
749
|
`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hitslop/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Create, develop, build, register, and publish hitSlop apps.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@crustjs/core": "^0.0.19",
|
|
31
|
-
"@hitslop/schema": "^0.
|
|
31
|
+
"@hitslop/schema": "^0.3.0",
|
|
32
32
|
"@noble/ed25519": "^3.2.0",
|
|
33
33
|
"fast-png": "^8.0.0",
|
|
34
34
|
"fflate": "^0.8.3",
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { ready } from "@hitslop/runtime";
|
|
2
1
|
import { mount } from "svelte";
|
|
3
2
|
import App from "./App.svelte";
|
|
4
3
|
import "./styles.css.ts";
|
|
@@ -6,4 +5,3 @@ import "./styles.css.ts";
|
|
|
6
5
|
const target = document.getElementById("app");
|
|
7
6
|
if (!target) throw new Error("Missing #app");
|
|
8
7
|
mount(App, { target });
|
|
9
|
-
ready();
|