@sdeverywhere/check-ui-shell 0.2.10 → 0.2.11
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/dist/index.js +2050 -1977
- package/package.json +14 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sdeverywhere/check-ui-shell",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.11",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist/**",
|
|
6
6
|
"types/**"
|
|
@@ -20,11 +20,18 @@
|
|
|
20
20
|
"svelte-dnd-action": "^0.9.50"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
+
"@storybook/addon-docs": "^9.0.17",
|
|
24
|
+
"@storybook/addon-links": "^9.0.17",
|
|
25
|
+
"@storybook/addon-svelte-csf": "^5.0.6",
|
|
26
|
+
"@storybook/addon-vitest": "^9.0.17",
|
|
27
|
+
"@storybook/svelte": "^9.0.17",
|
|
28
|
+
"@storybook/svelte-vite": "^9.0.17",
|
|
23
29
|
"@sveltejs/vite-plugin-svelte": "^6.2.1",
|
|
24
30
|
"@types/chart.js": "^2.9.34",
|
|
25
31
|
"@types/fontfaceobserver": "^2.1.3",
|
|
26
32
|
"postcss": "^8.4.41",
|
|
27
33
|
"sass": "^1.77.8",
|
|
34
|
+
"storybook": "^9.1.10",
|
|
28
35
|
"svelte": "^5.39.10",
|
|
29
36
|
"svelte-awesome": "^3.3.5",
|
|
30
37
|
"svelte-check": "^4.3.2",
|
|
@@ -59,11 +66,15 @@
|
|
|
59
66
|
"prettier:fix": "prettier --write .",
|
|
60
67
|
"precommit": "../../scripts/precommit",
|
|
61
68
|
"test": "vitest run",
|
|
62
|
-
"test:
|
|
63
|
-
"test:
|
|
69
|
+
"test:ts": "vitest run --project=ts",
|
|
70
|
+
"test:storybook": "vitest run --project=storybook",
|
|
71
|
+
"test:ts:watch": "vitest dev --project=ts",
|
|
72
|
+
"test:storybook:watch": "vitest dev --project=storybook",
|
|
73
|
+
"test:ci": "run-s test:ts",
|
|
64
74
|
"type-check": "tsc --noEmit -p tsconfig-test.json",
|
|
65
75
|
"build": "vite build",
|
|
66
76
|
"build:watch": "vite build --watch",
|
|
77
|
+
"storybook": "storybook dev -p 6010",
|
|
67
78
|
"docs": "../../scripts/gen-docs.js",
|
|
68
79
|
"ci:build": "run-s clean lint prettier:check test:ci type-check build docs"
|
|
69
80
|
}
|