defuss 2.0.4 → 2.0.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.
- package/dist/index.cjs +0 -0
- package/dist/index.mjs +0 -0
- package/dist/render/client.cjs +0 -0
- package/dist/render/client.mjs +0 -0
- package/dist/render/index.cjs +0 -0
- package/dist/render/index.mjs +0 -0
- package/dist/render/server.cjs +0 -0
- package/dist/render/server.mjs +0 -0
- package/package.json +22 -14
package/dist/index.cjs
CHANGED
|
File without changes
|
package/dist/index.mjs
CHANGED
|
File without changes
|
package/dist/render/client.cjs
CHANGED
|
File without changes
|
package/dist/render/client.mjs
CHANGED
|
File without changes
|
package/dist/render/index.cjs
CHANGED
|
File without changes
|
package/dist/render/index.mjs
CHANGED
|
File without changes
|
package/dist/render/server.cjs
CHANGED
|
File without changes
|
package/dist/render/server.mjs
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,25 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "defuss",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"description": "Explicit simplicity for the web.",
|
|
10
|
-
"keywords": [
|
|
10
|
+
"keywords": [
|
|
11
|
+
"jsx",
|
|
12
|
+
"render",
|
|
13
|
+
"ssr",
|
|
14
|
+
"isomorphic"
|
|
15
|
+
],
|
|
11
16
|
"repository": {
|
|
12
17
|
"url": "git+https://github.com/kyr0/defuss.git",
|
|
13
18
|
"type": "git"
|
|
14
19
|
},
|
|
15
|
-
"scripts": {
|
|
16
|
-
"clean": "rm -rf ./coverage && rm -rf ./node_modules/.pnpm && rm -rf ./node_modules/.vite",
|
|
17
|
-
"pretest": "pnpm run build",
|
|
18
|
-
"test:watch": "vitest --coverage",
|
|
19
|
-
"test": "vitest run --coverage",
|
|
20
|
-
"prebuild": "pnpm run clean",
|
|
21
|
-
"build": "pkgroll"
|
|
22
|
-
},
|
|
23
20
|
"author": "Aron Homberg <info@aron-homberg.de>",
|
|
24
21
|
"sideEffects": false,
|
|
25
22
|
"exports": {
|
|
@@ -77,7 +74,10 @@
|
|
|
77
74
|
"main": "./dist/index.cjs",
|
|
78
75
|
"module": "./dist/index.mjs",
|
|
79
76
|
"types": "./dist/index.d.cts",
|
|
80
|
-
"files": [
|
|
77
|
+
"files": [
|
|
78
|
+
"dist",
|
|
79
|
+
"assets"
|
|
80
|
+
],
|
|
81
81
|
"devDependencies": {
|
|
82
82
|
"@types/node": "^22.10.2",
|
|
83
83
|
"@vitest/coverage-v8": "^3.1.3",
|
|
@@ -87,10 +87,18 @@
|
|
|
87
87
|
"vitest": "^3.1.3"
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"defuss-runtime": "workspace:*",
|
|
91
90
|
"@types/w3c-xmlserializer": "^2.0.4",
|
|
92
91
|
"csstype": "^3.1.3",
|
|
93
92
|
"happy-dom": "^15.11.7",
|
|
94
|
-
"w3c-xmlserializer": "^5.0.0"
|
|
93
|
+
"w3c-xmlserializer": "^5.0.0",
|
|
94
|
+
"defuss-runtime": "1.0.1"
|
|
95
|
+
},
|
|
96
|
+
"scripts": {
|
|
97
|
+
"clean": "rm -rf ./coverage && rm -rf ./node_modules/.pnpm && rm -rf ./node_modules/.vite",
|
|
98
|
+
"pretest": "pnpm run build",
|
|
99
|
+
"test:watch": "vitest --coverage",
|
|
100
|
+
"test": "vitest run --coverage",
|
|
101
|
+
"prebuild": "pnpm run clean",
|
|
102
|
+
"build": "pkgroll"
|
|
95
103
|
}
|
|
96
|
-
}
|
|
104
|
+
}
|