@warkypublic/svelix 0.1.4 → 0.1.5
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.
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@source "../**/*.{svelte,js,ts}";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warkypublic/svelix",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Svelte 5 component library with Skeleton UI and Tailwind CSS",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"exports": {
|
|
@@ -8,8 +8,9 @@
|
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
9
|
"svelte": "./dist/index.js"
|
|
10
10
|
},
|
|
11
|
-
"./
|
|
12
|
-
"./
|
|
11
|
+
"./css/tailwind-source.css": "./dist/css/tailwind-source.css",
|
|
12
|
+
"./css/*.css": "./dist/css/*.css",
|
|
13
|
+
"./css/svelix_orange.css": "./dist/css/svelix_orange.css"
|
|
13
14
|
},
|
|
14
15
|
"files": [
|
|
15
16
|
"dist",
|
|
@@ -70,7 +71,7 @@
|
|
|
70
71
|
"dev": "vite dev",
|
|
71
72
|
"build": "vite build",
|
|
72
73
|
"preview": "vite preview",
|
|
73
|
-
"package": "svelte-kit sync && svelte-package && publint",
|
|
74
|
+
"package": "svelte-kit sync && svelte-package && mkdir -p dist/css && cp src/lib/css/tailwind-source.css dist/css/tailwind-source.css && publint",
|
|
74
75
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
75
76
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
76
77
|
"storybook": "storybook dev -p 6006",
|
|
File without changes
|