Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
57d129e9b8 | |||
87be53841b | |||
4c27d17769 | |||
ba1ef2d32c |
11
changelog.md
11
changelog.md
@ -1,5 +1,16 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2024-10-06 - 1.3.2 - fix(core)
|
||||||
|
Fix TypeScript type definition for route match function
|
||||||
|
|
||||||
|
- Updated the type definition for the matchFunction in the SmartRouter class to include a generic parameter.
|
||||||
|
|
||||||
|
## 2024-10-06 - 1.3.1 - fix(dependencies)
|
||||||
|
Updated dependencies to latest versions, resolving compatibility issues and improving performance.
|
||||||
|
|
||||||
|
- Updated devDependencies to their latest versions, including tsbuild, tsbundle, tstest, tapbundle, and @types/node
|
||||||
|
- Updated dependencies to latest versions of lik, smartrx, and path-to-regexp
|
||||||
|
|
||||||
## 2024-10-06 - 1.3.0 - feat(smartrouter)
|
## 2024-10-06 - 1.3.0 - feat(smartrouter)
|
||||||
Add destroy method to SmartRouter class.
|
Add destroy method to SmartRouter class.
|
||||||
|
|
||||||
|
18
package.json
18
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/smartrouter",
|
"name": "@push.rocks/smartrouter",
|
||||||
"version": "1.3.0",
|
"version": "1.3.2",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A JavaScript library providing routing capabilities for web applications.",
|
"description": "A JavaScript library providing routing capabilities for web applications.",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
@ -14,16 +14,16 @@
|
|||||||
"buildDocs": "tsdoc"
|
"buildDocs": "tsdoc"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@git.zone/tsbuild": "^2.1.70",
|
"@git.zone/tsbuild": "^2.1.84",
|
||||||
"@git.zone/tsbundle": "^2.0.7",
|
"@git.zone/tsbundle": "^2.0.15",
|
||||||
"@git.zone/tstest": "^1.0.81",
|
"@git.zone/tstest": "^1.0.90",
|
||||||
"@push.rocks/tapbundle": "^5.0.15",
|
"@push.rocks/tapbundle": "^5.3.0",
|
||||||
"@types/node": "^20.6.0"
|
"@types/node": "^22.7.4"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@push.rocks/lik": "^6.0.5",
|
"@push.rocks/lik": "^6.0.15",
|
||||||
"@push.rocks/smartrx": "^3.0.6",
|
"@push.rocks/smartrx": "^3.0.7",
|
||||||
"path-to-regexp": "^6.2.0"
|
"path-to-regexp": "^8.2.0"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"ts/**/*",
|
"ts/**/*",
|
||||||
|
8915
pnpm-lock.yaml
generated
8915
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/smartrouter',
|
name: '@push.rocks/smartrouter',
|
||||||
version: '1.3.0',
|
version: '1.3.2',
|
||||||
description: 'A JavaScript library providing routing capabilities for web applications.'
|
description: 'A JavaScript library providing routing capabilities for web applications.'
|
||||||
}
|
}
|
||||||
|
@ -32,7 +32,7 @@ export class SmartRouter {
|
|||||||
* the routes we are handling
|
* the routes we are handling
|
||||||
*/
|
*/
|
||||||
public routes: Array<{
|
public routes: Array<{
|
||||||
matchFunction: plugins.pathToRegExp.MatchFunction;
|
matchFunction: plugins.pathToRegExp.MatchFunction<any>;
|
||||||
handler: THandlerFunction;
|
handler: THandlerFunction;
|
||||||
}> = [];
|
}> = [];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user