@thi.ng/router 4.0.10 → 4.0.12

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-05-08T18:24:32Z
3
+ - **Last updated**: 2024-06-29T09:28:36Z
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.
@@ -9,6 +9,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
9
9
  **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
10
10
  and/or version bumps of transitive dependencies.
11
11
 
12
+ ### [4.0.11](https://github.com/thi-ng/umbrella/tree/@thi.ng/router@4.0.11) (2024-06-21)
13
+
14
+ #### ♻️ Refactoring
15
+
16
+ - enforce uniform naming convention of internal functions ([56992b2](https://github.com/thi-ng/umbrella/commit/56992b2))
17
+
12
18
  ### [4.0.8](https://github.com/thi-ng/umbrella/tree/@thi.ng/router@4.0.8) (2024-04-20)
13
19
 
14
20
  #### ♻️ Refactoring
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
8
8
 
9
9
  > [!NOTE]
10
- > This is one of 192 standalone projects, maintained as part
10
+ > This is one of 189 standalone projects, maintained as part
11
11
  > of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
12
12
  > and anti-framework.
13
13
  >
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/router",
3
- "version": "4.0.10",
3
+ "version": "4.0.12",
4
4
  "description": "Generic trie-based router with support for wildcards, route param validation/coercion, auth",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -10,7 +10,7 @@
10
10
  "type": "git",
11
11
  "url": "https://github.com/thi-ng/umbrella.git"
12
12
  },
13
- "homepage": "https://github.com/thi-ng/umbrella/tree/develop/packages/router#readme",
13
+ "homepage": "https://thi.ng/router",
14
14
  "funding": [
15
15
  {
16
16
  "type": "github",
@@ -36,17 +36,17 @@
36
36
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
37
37
  },
38
38
  "dependencies": {
39
- "@thi.ng/api": "^8.11.2",
40
- "@thi.ng/checks": "^3.6.4",
41
- "@thi.ng/equiv": "^2.1.58",
42
- "@thi.ng/errors": "^2.5.7",
43
- "tslib": "^2.6.2"
39
+ "@thi.ng/api": "^8.11.4",
40
+ "@thi.ng/checks": "^3.6.6",
41
+ "@thi.ng/equiv": "^2.1.60",
42
+ "@thi.ng/errors": "^2.5.9",
43
+ "tslib": "^2.6.3"
44
44
  },
45
45
  "devDependencies": {
46
- "@microsoft/api-extractor": "^7.43.2",
47
- "esbuild": "^0.21.1",
46
+ "@microsoft/api-extractor": "^7.47.0",
47
+ "esbuild": "^0.21.5",
48
48
  "typedoc": "^0.25.13",
49
- "typescript": "^5.4.5"
49
+ "typescript": "^5.5.2"
50
50
  },
51
51
  "keywords": [
52
52
  "browser",
@@ -97,5 +97,5 @@
97
97
  ],
98
98
  "year": 2014
99
99
  },
100
- "gitHead": "df34b4a9e650cc7323575356de207d78933bdcf3\n"
100
+ "gitHead": "7b950c112fba0b2e7c450765b15624c3382f1354\n"
101
101
  }
package/router.js CHANGED
@@ -131,7 +131,7 @@ let Router = class {
131
131
  if (route) {
132
132
  const params2 = match.params;
133
133
  let parts = route.match.map((x) => {
134
- if (isRouteParam(x)) {
134
+ if (__isRouteParam(x)) {
135
135
  const id2 = x.substring(1);
136
136
  const p = params2?.[id2];
137
137
  if (p == null) {
@@ -161,7 +161,7 @@ let Router = class {
161
161
  }
162
162
  let hasParams = false;
163
163
  const params = match.reduce((acc, x, i) => {
164
- if (isRouteParam(x)) {
164
+ if (__isRouteParam(x)) {
165
165
  hasParams = true;
166
166
  acc[i] = x.substring(1);
167
167
  }
@@ -227,7 +227,7 @@ let Router = class {
227
227
  Router = __decorateClass([
228
228
  INotifyMixin
229
229
  ], Router);
230
- const isRouteParam = (x) => x[0] === "?";
230
+ const __isRouteParam = (x) => x[0] === "?";
231
231
  export {
232
232
  Router
233
233
  };