preact-hashish-router 0.1.8 → 0.1.9
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 +3 -1
- package/package.json +12 -11
package/README.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
# Preact Hashish Router
|
|
2
2
|
|
|
3
|
+
A simple router for preact with support for hash and browser routing.
|
|
4
|
+
|
|
3
5
|
## Features
|
|
4
6
|
|
|
5
7
|
- `browser` and `hash` routing types.
|
|
6
8
|
- Support for lazy-loaded routes (`lazy` loading).
|
|
7
|
-
- Error handling
|
|
9
|
+
- Error handling.
|
|
8
10
|
- Fully typed.
|
|
9
11
|
- Ultra lightweight.
|
|
10
12
|
- Minimal external dependencies.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "preact-hashish-router",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A simple router for preact",
|
|
6
6
|
"scripts": {
|
|
@@ -18,7 +18,8 @@
|
|
|
18
18
|
"./examples/*"
|
|
19
19
|
],
|
|
20
20
|
"exports": {
|
|
21
|
-
".": "./dist/index.js"
|
|
21
|
+
".": "./dist/index.js",
|
|
22
|
+
"./package.json": "./package.json"
|
|
22
23
|
},
|
|
23
24
|
"keywords": [
|
|
24
25
|
"preact",
|
|
@@ -44,19 +45,19 @@
|
|
|
44
45
|
"README.md"
|
|
45
46
|
],
|
|
46
47
|
"dependencies": {
|
|
47
|
-
"rou3": "
|
|
48
|
-
"ufo": "
|
|
48
|
+
"rou3": "0.7.3",
|
|
49
|
+
"ufo": "1.6.1"
|
|
49
50
|
},
|
|
50
51
|
"peerDependencies": {
|
|
51
|
-
"preact": "
|
|
52
|
+
"preact": "10.27.2"
|
|
52
53
|
},
|
|
53
54
|
"devDependencies": {
|
|
54
55
|
"@biomejs/biome": "1.8.3",
|
|
55
|
-
"@types/node": "
|
|
56
|
-
"changelogen": "
|
|
57
|
-
"esbuild": "
|
|
58
|
-
"prettier": "
|
|
59
|
-
"prettier-plugin-organize-imports": "
|
|
60
|
-
"typescript": "
|
|
56
|
+
"@types/node": "22.18.0",
|
|
57
|
+
"changelogen": "0.6.2",
|
|
58
|
+
"esbuild": "0.25.9",
|
|
59
|
+
"prettier": "3.6.2",
|
|
60
|
+
"prettier-plugin-organize-imports": "4.2.0",
|
|
61
|
+
"typescript": "5.9.2"
|
|
61
62
|
}
|
|
62
63
|
}
|