wdwh 1.12.13-dev.1 → 1.12.13
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 +7 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -56,8 +56,8 @@ bun i wdwh@latest
|
|
|
56
56
|
|
|
57
57
|
- `src/app/index.tsx` and additional `src/app/` subfolders – **all**
|
|
58
58
|
`index.tsx` files are treated as separate pages and will produce
|
|
59
|
-
`/
|
|
60
|
-
- `src/app/App.tsx`
|
|
59
|
+
`/DIST_DIR/index.html`, `/DIST_DIR/foo/index.html`, etc.
|
|
60
|
+
- `src/app/App.tsx` <!-- to remove in future -->
|
|
61
61
|
- `src/app/react.svg` (favicon, can be any other image, bun path must be specify in `src/app/index.tsx`)
|
|
62
62
|
- `src/app/global.css` (must contain `@import "tailwindcss";`)
|
|
63
63
|
- `package.json` (with scripts `dev` `build`)
|
|
@@ -66,6 +66,8 @@ bun i wdwh@latest
|
|
|
66
66
|
|
|
67
67
|
### Optional helper utilities
|
|
68
68
|
|
|
69
|
-
-
|
|
70
|
-
|
|
71
|
-
|
|
69
|
+
- `clsx` build in
|
|
70
|
+
- `useSearchParam`
|
|
71
|
+
|
|
72
|
+
<!-- - `useUrl` -->
|
|
73
|
+
<!-- - `comptime` executes js in build -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wdwh",
|
|
3
|
-
"version": "1.12.13
|
|
3
|
+
"version": "1.12.13",
|
|
4
4
|
"author": "kubashh",
|
|
5
5
|
"description": "The Bun Frontend Framework.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"dev": "clear && bun dev/dev.ts",
|
|
28
28
|
"build": "bun dev/scripts.ts",
|
|
29
29
|
"pub": "bun dev/scripts.ts --publish",
|
|
30
|
-
"zip": "zip -r template/template.zip template/template"
|
|
30
|
+
"zip": "rm -f template/template.zip && zip -r template/template.zip template/template"
|
|
31
31
|
},
|
|
32
32
|
"bin": {
|
|
33
33
|
"wdwh": "./wdwh.js"
|