@thi.ng/router 3.2.34 → 3.2.35

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/basic.js +2 -1
  3. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-08-22T14:39:27Z
3
+ - **Last updated**: 2023-08-27T11:20:59Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/basic.js CHANGED
@@ -6,7 +6,7 @@ import { assert } from "@thi.ng/errors/assert";
6
6
  import { illegalArgs } from "@thi.ng/errors/illegal-arguments";
7
7
  import { illegalArity } from "@thi.ng/errors/illegal-arity";
8
8
  import { EVENT_ROUTE_CHANGED, EVENT_ROUTE_FAILED, } from "./api.js";
9
- export let BasicRouter = class BasicRouter {
9
+ let BasicRouter = class BasicRouter {
10
10
  constructor(config) {
11
11
  this.config = {
12
12
  authenticator: (route, _, params) => ({
@@ -166,5 +166,6 @@ export let BasicRouter = class BasicRouter {
166
166
  BasicRouter = __decorate([
167
167
  INotifyMixin
168
168
  ], BasicRouter);
169
+ export { BasicRouter };
169
170
  const isParametricRoute = (route) => route.match.some(isRouteParam);
170
171
  const isRouteParam = (x) => x[0] === "?";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/router",
3
- "version": "3.2.34",
3
+ "version": "3.2.35",
4
4
  "description": "Generic router for browser & non-browser based applications",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,19 +34,19 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.9.4",
38
- "@thi.ng/checks": "^3.4.4",
39
- "@thi.ng/equiv": "^2.1.29",
40
- "@thi.ng/errors": "^2.3.4",
41
- "tslib": "^2.6.1"
37
+ "@thi.ng/api": "^8.9.5",
38
+ "@thi.ng/checks": "^3.4.5",
39
+ "@thi.ng/equiv": "^2.1.30",
40
+ "@thi.ng/errors": "^2.3.5",
41
+ "tslib": "^2.6.2"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@microsoft/api-extractor": "^7.36.4",
45
- "@thi.ng/testament": "^0.3.22",
45
+ "@thi.ng/testament": "^0.3.23",
46
46
  "rimraf": "^5.0.1",
47
47
  "tools": "^0.0.1",
48
- "typedoc": "^0.24.8",
49
- "typescript": "^5.1.6"
48
+ "typedoc": "^0.25.0",
49
+ "typescript": "^5.2.2"
50
50
  },
51
51
  "keywords": [
52
52
  "browser",
@@ -91,5 +91,5 @@
91
91
  ],
92
92
  "year": 2014
93
93
  },
94
- "gitHead": "74cfe3fb8de5bfcbfc1109e67604541cbd7b77aa\n"
94
+ "gitHead": "5929dd20497668496af13415cdf784a4d6f69aa3\n"
95
95
  }