@hkdigital/lib-sveltekit 0.0.40 → 0.0.42
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/package.json +17 -1
package/README.md
CHANGED
@@ -43,7 +43,7 @@ For example to import a constant from `constants/regexp/index.js`
|
|
43
43
|
import { CHAR } from '@hkdigital/lib-sveltekit-test/constants/regexp';
|
44
44
|
```
|
45
45
|
|
46
|
-
###
|
46
|
+
### Import CSS
|
47
47
|
|
48
48
|
Vite should include postcss-import, but the only solution to get it working for now is to use a relative path to the node_modules folder.
|
49
49
|
|
package/package.json
CHANGED
@@ -1,12 +1,20 @@
|
|
1
1
|
{
|
2
2
|
"name": "@hkdigital/lib-sveltekit",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.42",
|
4
4
|
"author": "Jens Kleinhout, HKdigital (https://hkdigital.nl)",
|
5
5
|
"license": "ISC",
|
6
6
|
"repository": {
|
7
7
|
"type": "git",
|
8
8
|
"url": "git+https://github.com/HKdigital/hkdigital--lib-sveltekit.git"
|
9
9
|
},
|
10
|
+
"keywords": [
|
11
|
+
"component-library",
|
12
|
+
"sveltekit",
|
13
|
+
"skeleton",
|
14
|
+
"tailwindcss",
|
15
|
+
"runed",
|
16
|
+
"valibot"
|
17
|
+
],
|
10
18
|
"scripts": {
|
11
19
|
"dev": "vite dev",
|
12
20
|
"build": "vite build && npm run package",
|
@@ -42,6 +50,14 @@
|
|
42
50
|
"types": "./dist/classes/index.d.ts",
|
43
51
|
"svelte": "./dist/classes/index.js"
|
44
52
|
},
|
53
|
+
"./classes/streams": {
|
54
|
+
"types": "./dist/classes/streams/index.d.ts",
|
55
|
+
"svelte": "./dist/classes/streams/index.js"
|
56
|
+
},
|
57
|
+
"./classes/stores": {
|
58
|
+
"types": "./dist/classes/stores/index.d.ts",
|
59
|
+
"svelte": "./dist/classes/stores/index.js"
|
60
|
+
},
|
45
61
|
"./components": {
|
46
62
|
"types": "./dist/components/index.d.ts",
|
47
63
|
"svelte": "./dist/components/index.js"
|