Compare commits

..

No commits in common. "master" and "v1.3.1" have entirely different histories.

4 changed files with 3 additions and 8 deletions

View File

@ -1,10 +1,5 @@
# 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.

View File

@ -1,6 +1,6 @@
{
"name": "@push.rocks/smartrouter",
"version": "1.3.2",
"version": "1.3.1",
"private": false,
"description": "A JavaScript library providing routing capabilities for web applications.",
"main": "dist_ts/index.js",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartrouter',
version: '1.3.2',
version: '1.3.1',
description: 'A JavaScript library providing routing capabilities for web applications.'
}

View File

@ -32,7 +32,7 @@ export class SmartRouter {
* the routes we are handling
*/
public routes: Array<{
matchFunction: plugins.pathToRegExp.MatchFunction<any>;
matchFunction: plugins.pathToRegExp.MatchFunction;
handler: THandlerFunction;
}> = [];