wdwh 1.11.2 → 1.12.0
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/hooks.d.ts +6 -0
- package/hooks.js +2 -0
- package/package.json +7 -4
- /package/{index.d.ts → config.d.ts} +0 -0
package/hooks.d.ts
ADDED
package/hooks.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wdwh",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.12.0",
|
|
4
4
|
"author": "kubashh",
|
|
5
5
|
"description": "The Bun framework. Easyer web dev without html for static sites",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,13 +19,16 @@
|
|
|
19
19
|
"LICENSE",
|
|
20
20
|
"README.md",
|
|
21
21
|
"dist",
|
|
22
|
-
"
|
|
22
|
+
"config.d.ts",
|
|
23
|
+
"hooks.js",
|
|
24
|
+
"hooks.d.ts",
|
|
23
25
|
"signal.js",
|
|
24
26
|
"signal.d.ts"
|
|
25
27
|
],
|
|
26
28
|
"scripts": {
|
|
27
|
-
"build": "bun scripts.ts",
|
|
28
|
-
"pub": "bun scripts.ts pub"
|
|
29
|
+
"build": "bun dev/scripts.ts",
|
|
30
|
+
"pub": "bun dev/scripts.ts pub",
|
|
31
|
+
"zip": "zip -r template/template.zip template/template"
|
|
29
32
|
},
|
|
30
33
|
"bin": {
|
|
31
34
|
"wdwh": "./wdwh.js"
|
|
File without changes
|