Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
57d129e9b8 | |||
87be53841b |
@ -1,5 +1,10 @@
|
|||||||
# 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)
|
## 2024-10-06 - 1.3.1 - fix(dependencies)
|
||||||
Updated dependencies to latest versions, resolving compatibility issues and improving performance.
|
Updated dependencies to latest versions, resolving compatibility issues and improving performance.
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/smartrouter",
|
"name": "@push.rocks/smartrouter",
|
||||||
"version": "1.3.1",
|
"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",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/smartrouter',
|
name: '@push.rocks/smartrouter',
|
||||||
version: '1.3.1',
|
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