@batijs/elements 0.0.1 → 0.0.3
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/elements/full.js +1962 -1
- package/package.json +20 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@batijs/elements",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "BatiJS website as Web Components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -9,35 +9,34 @@
|
|
|
9
9
|
],
|
|
10
10
|
"author": "Joël Charles",
|
|
11
11
|
"devDependencies": {
|
|
12
|
-
"@babel/core": "^7.
|
|
12
|
+
"@babel/core": "^7.22.5",
|
|
13
13
|
"@hattip/adapter-node": "^0.0.33",
|
|
14
14
|
"@hattip/router": "^0.0.33",
|
|
15
15
|
"@hattip/vite": "^0.0.33",
|
|
16
16
|
"@rollup/plugin-babel": "^6.0.3",
|
|
17
17
|
"@rollup/plugin-image": "^3.0.2",
|
|
18
18
|
"@rollup/plugin-json": "^6.0.0",
|
|
19
|
-
"@rollup/plugin-node-resolve": "^15.0
|
|
20
|
-
"@rollup/plugin-replace": "^5.0.2",
|
|
21
|
-
"@rollup/plugin-terser": "^0.4.2",
|
|
22
|
-
"@rollup/plugin-typescript": "^11.1.1",
|
|
19
|
+
"@rollup/plugin-node-resolve": "^15.1.0",
|
|
23
20
|
"autoprefixer": "^10.4.14",
|
|
24
21
|
"babel-preset-solid": "^1.7.4",
|
|
25
|
-
"cross-fetch": "^3.1.
|
|
26
|
-
"daisyui": "^
|
|
22
|
+
"cross-fetch": "^3.1.6",
|
|
23
|
+
"daisyui": "^3.1.0",
|
|
24
|
+
"esbuild": "^0.17.19",
|
|
27
25
|
"hattip": "^0.0.33",
|
|
28
|
-
"postcss": "^8.4.
|
|
29
|
-
"rollup": "^3.
|
|
26
|
+
"postcss": "^8.4.24",
|
|
27
|
+
"rollup": "^3.25.1",
|
|
28
|
+
"rollup-plugin-esbuild": "^5.0.0",
|
|
30
29
|
"rollup-plugin-import-css": "^3.2.1",
|
|
31
30
|
"rollup-plugin-postcss": "^4.0.2",
|
|
32
|
-
"rollup-plugin-tsconfig-paths": "^1.5.
|
|
33
|
-
"solid-element": "^1.7.
|
|
34
|
-
"solid-js": "^1.7.
|
|
31
|
+
"rollup-plugin-tsconfig-paths": "^1.5.1",
|
|
32
|
+
"solid-element": "^1.7.1",
|
|
33
|
+
"solid-js": "^1.7.6",
|
|
35
34
|
"tailwindcss": "^3.3.2",
|
|
36
|
-
"tslib": "^2.5.
|
|
37
|
-
"typescript": "^5.
|
|
35
|
+
"tslib": "^2.5.3",
|
|
36
|
+
"typescript": "^5.1.3",
|
|
38
37
|
"vike-solid": "^0.0.7",
|
|
39
|
-
"vite": "^4.3.
|
|
40
|
-
"vite-plugin-ssr": "^0.4.
|
|
38
|
+
"vite": "^4.3.9",
|
|
39
|
+
"vite-plugin-ssr": "^0.4.131",
|
|
41
40
|
"vite-tsconfig-paths": "^4.2.0"
|
|
42
41
|
},
|
|
43
42
|
"files": [
|
|
@@ -46,8 +45,9 @@
|
|
|
46
45
|
"scripts": {
|
|
47
46
|
"dev": "hattip serve ./hattip-entry.ts --client",
|
|
48
47
|
"build": "vite build",
|
|
49
|
-
"release": "pnpm run build:
|
|
50
|
-
"build:
|
|
51
|
-
"build:pages": "vite build --mode pages"
|
|
48
|
+
"release": "pnpm run build:widget && pnpm publish",
|
|
49
|
+
"build:widget": "rollup -c",
|
|
50
|
+
"build:pages": "vite build --mode pages",
|
|
51
|
+
"serve:widget": "http-server . -c-1 -p 8080 -o /widget-public"
|
|
52
52
|
}
|
|
53
53
|
}
|