next-middleware-router 1.0.0 → 1.0.2

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2024-present, Filip Toman
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # Next.js Middleware Router
2
+
3
+ **TODO**
4
+
5
+ <sub><sub>(just gimme a sec. ill write the README over the weekend)</sub></sub>
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.compilePath = void 0;
4
+ const raise_1 = require("./raise");
5
+ // Compile a RegEx that matches a specific route and extracts its params and wildcard
6
+ const compilePath = (path, caseSensitive = false) => {
7
+ const parts = path.split('/');
8
+ const params = [];
9
+ let patt = '^', wildcard = Infinity;
10
+ // Iterate over segments of the route
11
+ for (let i = 0; i < parts.length; i++) {
12
+ if (parts[i] === '*') {
13
+ // Wildcard
14
+ if (i < parts.length - 1)
15
+ (0, raise_1.raise)(`Invalid path '/${path}'. Wildcard use is only permitted at the very end.`);
16
+ patt += "(/[a-zA-Z0-9.\\-/%_~!$&'()*+,;=:@]+)?";
17
+ wildcard = i;
18
+ }
19
+ else if (parts[i].startsWith(':')) {
20
+ // Param
21
+ params.push([
22
+ parts[i].endsWith('?') ? parts[i].slice(1, -1) : parts[i].slice(1),
23
+ i,
24
+ ]);
25
+ patt += "(/[a-zA-Z0-9.\\-%_~!$&'()*+,;=:@]+)";
26
+ if (parts[i].endsWith('?'))
27
+ patt += '?';
28
+ }
29
+ else {
30
+ // Exact
31
+ let name = parts[i].endsWith('?') ? parts[i].slice(0, -1) : parts[i];
32
+ name = encodeURI(name);
33
+ name = name.replace(/[\\.*+^$?{}|()[\]]/g, '\\$&'); // Escape RegExp special chars
34
+ patt += `(/${name})`;
35
+ if (parts[i].endsWith('?'))
36
+ patt += '?';
37
+ }
38
+ }
39
+ patt += '$';
40
+ return [new RegExp(patt, caseSensitive ? '' : 'i'), params, wildcard];
41
+ };
42
+ exports.compilePath = compilePath;
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.concatPaths = void 0;
4
+ function concatPaths(...paths) {
5
+ let res = '';
6
+ for (const path of paths) {
7
+ if (res && path)
8
+ res += '/';
9
+ res += path;
10
+ }
11
+ return res;
12
+ }
13
+ exports.concatPaths = concatPaths;
@@ -0,0 +1,151 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.handleRoutes = void 0;
4
+ const compilePath_1 = require("./compilePath");
5
+ const concatPaths_1 = require("./concatPaths");
6
+ const normalizePath_1 = require("./normalizePath");
7
+ const stripWild_1 = require("./stripWild");
8
+ // Split multi-routes (RouteDefs with path: string[]) into multiple simple routes (RouteDefs with path: string)
9
+ function splitMultiroutes(children) {
10
+ const res = [];
11
+ for (const child of children) {
12
+ if (typeof child.path === "string") {
13
+ res.push(child);
14
+ }
15
+ else {
16
+ for (const path of child.path) {
17
+ res.push({
18
+ path,
19
+ caseSensitive: child.caseSensitive,
20
+ children: child.children,
21
+ handler: child.handler,
22
+ });
23
+ }
24
+ }
25
+ }
26
+ return res;
27
+ }
28
+ // Flatten the RouteDef hierarchy into a flat list containing all configured routes
29
+ function* enumRoutes(children, parent) {
30
+ const splitChildren = splitMultiroutes(children);
31
+ for (const child of splitChildren) {
32
+ let newPath = (0, normalizePath_1.normalizePath)(child.path);
33
+ if (parent) {
34
+ const oldPath = (0, stripWild_1.stripWild)(parent.path);
35
+ newPath = (0, concatPaths_1.concatPaths)(oldPath, newPath);
36
+ }
37
+ const res = {
38
+ path: newPath,
39
+ handler: child.handler,
40
+ caseSensitive: !!child.caseSensitive,
41
+ parent,
42
+ };
43
+ // Iterate over children and yield their RouteNodes
44
+ let hasIndex = false;
45
+ if (child.children) {
46
+ for (const sub of enumRoutes(child.children, res)) {
47
+ if (sub.path.length === newPath.length)
48
+ hasIndex = !(0, stripWild_1.isWild)(newPath) || (0, stripWild_1.isWild)(sub.path);
49
+ yield sub;
50
+ }
51
+ }
52
+ // Don't yield the current RouteNode if one of its children matches the same route
53
+ if (hasIndex)
54
+ continue;
55
+ const [matcher, params, wild] = (0, compilePath_1.compilePath)(newPath, child.caseSensitive);
56
+ res.matcher = matcher;
57
+ res.params = params;
58
+ res.wild = wild;
59
+ yield res;
60
+ }
61
+ }
62
+ // Get a complete list of routes from enumRoutes() and sort them in
63
+ // the order from most to least specific
64
+ function getRoutes(routes) {
65
+ const res = [...enumRoutes(routes)];
66
+ // Specificity levels (most to least specific):
67
+ // 1 - extact (matches one semgent with exact string)
68
+ // 2 - param (matches one segment with arbitrary value)
69
+ // 3 - wildcard (matches any number of arbitrary segments; wildcards can only be used at the very end of a path)
70
+ res.sort((a, b) => {
71
+ for (let i = 0;; i++) {
72
+ if (i >= b.params.length && i >= a.params.length) {
73
+ return b.wild - a.wild;
74
+ }
75
+ else if (i >= b.params.length || i >= a.params.length) {
76
+ const aVal = i < a.params.length ? a.params[i][1] : a.wild;
77
+ const bVal = i < b.params.length ? b.params[i][1] : b.wild;
78
+ if (aVal === bVal)
79
+ return i < b.params.length ? 1 : -1;
80
+ return bVal - aVal;
81
+ }
82
+ else {
83
+ if (a.params[i][1] > b.params[i][1]) {
84
+ return -1;
85
+ }
86
+ else if (a.params[i][1] < b.params[i][1]) {
87
+ return 1;
88
+ }
89
+ }
90
+ }
91
+ });
92
+ return res;
93
+ }
94
+ const handleRoutes = (pathname, { basename = "", children = [], } = {}) => {
95
+ const fullPath = (0, normalizePath_1.normalizePath)(pathname);
96
+ // Strip global prefix from the pathname
97
+ const basematcher = (() => {
98
+ const normalized = (0, normalizePath_1.normalizePath)(basename);
99
+ let reSrc = normalized.replace(/[\\.*+^$?{}|()[\]]/g, "\\$&");
100
+ reSrc += "(/[a-zA-Z0-9.\\-/%_~!$&'()*+,;=:@]+)?";
101
+ return new RegExp(reSrc, "i");
102
+ })();
103
+ const path = (() => {
104
+ const match = `/${fullPath}`.match(basematcher);
105
+ return !match ? null : match[1] ?? "/";
106
+ })();
107
+ // Path doesn't match the global prefix
108
+ if (path === null)
109
+ return;
110
+ const params = {};
111
+ let retVal = undefined;
112
+ // Iterate over all routes specified in the configuration object
113
+ // (sorted by specificity from most to least specific)
114
+ for (const route of getRoutes(children)) {
115
+ // Find first matching route
116
+ const match = path.match(route.matcher);
117
+ if (!match)
118
+ continue;
119
+ // Extract URL params
120
+ for (const [name, index] of route.params) {
121
+ let paramVal;
122
+ if ((paramVal = match[index + 1])) {
123
+ params[name] = decodeURIComponent(paramVal.slice(1));
124
+ }
125
+ }
126
+ // Traverse matching RouteNode's parents to build a complete
127
+ // RouteNode chain with handler functions to be executed
128
+ const routeChain = [route];
129
+ let curr = route;
130
+ while (curr.parent) {
131
+ curr = curr.parent;
132
+ routeChain.push(curr);
133
+ }
134
+ let isAborted = false;
135
+ const abort = (data) => {
136
+ isAborted = true;
137
+ retVal = data;
138
+ };
139
+ // Execute chain of handlers until done or aborted
140
+ // Chain is executed in the parent -> child direction
141
+ for (let i = routeChain.length - 1; i >= 0; i--) {
142
+ const node = routeChain[i];
143
+ node.handler?.({ abort: abort, params });
144
+ if (isAborted)
145
+ break;
146
+ }
147
+ break;
148
+ }
149
+ return retVal;
150
+ };
151
+ exports.handleRoutes = handleRoutes;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.handleRoutes = void 0;
4
+ var handleRoutes_1 = require("./handleRoutes");
5
+ Object.defineProperty(exports, "handleRoutes", { enumerable: true, get: function () { return handleRoutes_1.handleRoutes; } });
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.normalizePath = void 0;
4
+ // Remove leading and trailing slashes on a path
5
+ const normalizePath = (path) => {
6
+ const normalized = path[0] === '/' ? path.slice(1) : path;
7
+ return normalized.endsWith('/') ? normalized.slice(0, -1) : normalized;
8
+ };
9
+ exports.normalizePath = normalizePath;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.raise = void 0;
4
+ function raise(err) {
5
+ throw new Error(err);
6
+ }
7
+ exports.raise = raise;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.stripWild = exports.isWild = void 0;
4
+ const isWild = (path) => path === '*' || path.endsWith('/*');
5
+ exports.isWild = isWild;
6
+ const stripWild = (path) => (0, exports.isWild)(path) ? path.slice(0, -2) : path;
7
+ exports.stripWild = stripWild;
@@ -0,0 +1 @@
1
+ export declare const compilePath: (path: string, caseSensitive?: boolean) => [RegExp, [string, number][], number];
@@ -0,0 +1,38 @@
1
+ import { raise } from './raise';
2
+ // Compile a RegEx that matches a specific route and extracts its params and wildcard
3
+ export const compilePath = (path, caseSensitive = false) => {
4
+ const parts = path.split('/');
5
+ const params = [];
6
+ let patt = '^', wildcard = Infinity;
7
+ // Iterate over segments of the route
8
+ for (let i = 0; i < parts.length; i++) {
9
+ if (parts[i] === '*') {
10
+ // Wildcard
11
+ if (i < parts.length - 1)
12
+ raise(`Invalid path '/${path}'. Wildcard use is only permitted at the very end.`);
13
+ patt += "(/[a-zA-Z0-9.\\-/%_~!$&'()*+,;=:@]+)?";
14
+ wildcard = i;
15
+ }
16
+ else if (parts[i].startsWith(':')) {
17
+ // Param
18
+ params.push([
19
+ parts[i].endsWith('?') ? parts[i].slice(1, -1) : parts[i].slice(1),
20
+ i,
21
+ ]);
22
+ patt += "(/[a-zA-Z0-9.\\-%_~!$&'()*+,;=:@]+)";
23
+ if (parts[i].endsWith('?'))
24
+ patt += '?';
25
+ }
26
+ else {
27
+ // Exact
28
+ let name = parts[i].endsWith('?') ? parts[i].slice(0, -1) : parts[i];
29
+ name = encodeURI(name);
30
+ name = name.replace(/[\\.*+^$?{}|()[\]]/g, '\\$&'); // Escape RegExp special chars
31
+ patt += `(/${name})`;
32
+ if (parts[i].endsWith('?'))
33
+ patt += '?';
34
+ }
35
+ }
36
+ patt += '$';
37
+ return [new RegExp(patt, caseSensitive ? '' : 'i'), params, wildcard];
38
+ };
@@ -0,0 +1 @@
1
+ export declare function concatPaths(...paths: string[]): string;
@@ -0,0 +1,9 @@
1
+ export function concatPaths(...paths) {
2
+ let res = '';
3
+ for (const path of paths) {
4
+ if (res && path)
5
+ res += '/';
6
+ res += path;
7
+ }
8
+ return res;
9
+ }
@@ -0,0 +1,15 @@
1
+ type RouteHandler = (args: {
2
+ params: Record<string, string>;
3
+ abort: (data: any) => void;
4
+ }) => void;
5
+ interface RouteDef {
6
+ path: string | string[];
7
+ handler?: RouteHandler;
8
+ caseSensitive?: boolean;
9
+ children?: RouteDef[];
10
+ }
11
+ export declare const handleRoutes: (pathname: string, { basename, children, }?: {
12
+ basename?: string;
13
+ children?: RouteDef[];
14
+ }) => any;
15
+ export {};
@@ -0,0 +1,147 @@
1
+ import { compilePath } from "./compilePath";
2
+ import { concatPaths } from "./concatPaths";
3
+ import { normalizePath } from "./normalizePath";
4
+ import { isWild, stripWild } from "./stripWild";
5
+ // Split multi-routes (RouteDefs with path: string[]) into multiple simple routes (RouteDefs with path: string)
6
+ function splitMultiroutes(children) {
7
+ const res = [];
8
+ for (const child of children) {
9
+ if (typeof child.path === "string") {
10
+ res.push(child);
11
+ }
12
+ else {
13
+ for (const path of child.path) {
14
+ res.push({
15
+ path,
16
+ caseSensitive: child.caseSensitive,
17
+ children: child.children,
18
+ handler: child.handler,
19
+ });
20
+ }
21
+ }
22
+ }
23
+ return res;
24
+ }
25
+ // Flatten the RouteDef hierarchy into a flat list containing all configured routes
26
+ function* enumRoutes(children, parent) {
27
+ const splitChildren = splitMultiroutes(children);
28
+ for (const child of splitChildren) {
29
+ let newPath = normalizePath(child.path);
30
+ if (parent) {
31
+ const oldPath = stripWild(parent.path);
32
+ newPath = concatPaths(oldPath, newPath);
33
+ }
34
+ const res = {
35
+ path: newPath,
36
+ handler: child.handler,
37
+ caseSensitive: !!child.caseSensitive,
38
+ parent,
39
+ };
40
+ // Iterate over children and yield their RouteNodes
41
+ let hasIndex = false;
42
+ if (child.children) {
43
+ for (const sub of enumRoutes(child.children, res)) {
44
+ if (sub.path.length === newPath.length)
45
+ hasIndex = !isWild(newPath) || isWild(sub.path);
46
+ yield sub;
47
+ }
48
+ }
49
+ // Don't yield the current RouteNode if one of its children matches the same route
50
+ if (hasIndex)
51
+ continue;
52
+ const [matcher, params, wild] = compilePath(newPath, child.caseSensitive);
53
+ res.matcher = matcher;
54
+ res.params = params;
55
+ res.wild = wild;
56
+ yield res;
57
+ }
58
+ }
59
+ // Get a complete list of routes from enumRoutes() and sort them in
60
+ // the order from most to least specific
61
+ function getRoutes(routes) {
62
+ const res = [...enumRoutes(routes)];
63
+ // Specificity levels (most to least specific):
64
+ // 1 - extact (matches one semgent with exact string)
65
+ // 2 - param (matches one segment with arbitrary value)
66
+ // 3 - wildcard (matches any number of arbitrary segments; wildcards can only be used at the very end of a path)
67
+ res.sort((a, b) => {
68
+ for (let i = 0;; i++) {
69
+ if (i >= b.params.length && i >= a.params.length) {
70
+ return b.wild - a.wild;
71
+ }
72
+ else if (i >= b.params.length || i >= a.params.length) {
73
+ const aVal = i < a.params.length ? a.params[i][1] : a.wild;
74
+ const bVal = i < b.params.length ? b.params[i][1] : b.wild;
75
+ if (aVal === bVal)
76
+ return i < b.params.length ? 1 : -1;
77
+ return bVal - aVal;
78
+ }
79
+ else {
80
+ if (a.params[i][1] > b.params[i][1]) {
81
+ return -1;
82
+ }
83
+ else if (a.params[i][1] < b.params[i][1]) {
84
+ return 1;
85
+ }
86
+ }
87
+ }
88
+ });
89
+ return res;
90
+ }
91
+ export const handleRoutes = (pathname, { basename = "", children = [], } = {}) => {
92
+ const fullPath = normalizePath(pathname);
93
+ // Strip global prefix from the pathname
94
+ const basematcher = (() => {
95
+ const normalized = normalizePath(basename);
96
+ let reSrc = normalized.replace(/[\\.*+^$?{}|()[\]]/g, "\\$&");
97
+ reSrc += "(/[a-zA-Z0-9.\\-/%_~!$&'()*+,;=:@]+)?";
98
+ return new RegExp(reSrc, "i");
99
+ })();
100
+ const path = (() => {
101
+ const match = `/${fullPath}`.match(basematcher);
102
+ return !match ? null : match[1] ?? "/";
103
+ })();
104
+ // Path doesn't match the global prefix
105
+ if (path === null)
106
+ return;
107
+ const params = {};
108
+ let retVal = undefined;
109
+ // Iterate over all routes specified in the configuration object
110
+ // (sorted by specificity from most to least specific)
111
+ for (const route of getRoutes(children)) {
112
+ // Find first matching route
113
+ const match = path.match(route.matcher);
114
+ if (!match)
115
+ continue;
116
+ // Extract URL params
117
+ for (const [name, index] of route.params) {
118
+ let paramVal;
119
+ if ((paramVal = match[index + 1])) {
120
+ params[name] = decodeURIComponent(paramVal.slice(1));
121
+ }
122
+ }
123
+ // Traverse matching RouteNode's parents to build a complete
124
+ // RouteNode chain with handler functions to be executed
125
+ const routeChain = [route];
126
+ let curr = route;
127
+ while (curr.parent) {
128
+ curr = curr.parent;
129
+ routeChain.push(curr);
130
+ }
131
+ let isAborted = false;
132
+ const abort = (data) => {
133
+ isAborted = true;
134
+ retVal = data;
135
+ };
136
+ // Execute chain of handlers until done or aborted
137
+ // Chain is executed in the parent -> child direction
138
+ for (let i = routeChain.length - 1; i >= 0; i--) {
139
+ const node = routeChain[i];
140
+ node.handler?.({ abort: abort, params });
141
+ if (isAborted)
142
+ break;
143
+ }
144
+ break;
145
+ }
146
+ return retVal;
147
+ };
@@ -0,0 +1 @@
1
+ export { handleRoutes } from './handleRoutes';
@@ -0,0 +1 @@
1
+ export { handleRoutes } from './handleRoutes';
@@ -0,0 +1 @@
1
+ export declare const normalizePath: (path: string) => string;
@@ -0,0 +1,5 @@
1
+ // Remove leading and trailing slashes on a path
2
+ export const normalizePath = (path) => {
3
+ const normalized = path[0] === '/' ? path.slice(1) : path;
4
+ return normalized.endsWith('/') ? normalized.slice(0, -1) : normalized;
5
+ };
@@ -0,0 +1 @@
1
+ export declare function raise(err: string): never;
@@ -0,0 +1,3 @@
1
+ export function raise(err) {
2
+ throw new Error(err);
3
+ }
@@ -0,0 +1,2 @@
1
+ export declare const isWild: (path: string) => boolean;
2
+ export declare const stripWild: (path: string) => string;
@@ -0,0 +1,2 @@
1
+ export const isWild = (path) => path === '*' || path.endsWith('/*');
2
+ export const stripWild = (path) => isWild(path) ? path.slice(0, -2) : path;
package/package.json CHANGED
@@ -1,44 +1,35 @@
1
1
  {
2
2
  "name": "next-middleware-router",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "author": "Fry",
5
5
  "license": "MIT",
6
6
  "description": "Router for middleware in Next.js",
7
- "type": "module",
8
7
  "files": [
9
8
  "dist"
10
9
  ],
11
- "module": "dist/freact.es.js",
12
- "types": "dist/types/index.d.ts",
13
- "main": "dist/freact.umd.js",
14
- "unpkg": "dist/freact.iife.js",
15
- "jsdelivr": "dist/freact.iife.js",
16
10
  "exports": {
17
11
  ".": {
18
- "import": "./dist/freact.es.js",
19
- "require": "./dist/freact.umd.js",
20
- "types": "./dist/types/index.d.ts"
21
- },
22
- "./jsx-runtime": {
23
- "import": "./dist/jsx-runtime.es.js",
24
- "require": "./dist/jsx-runtime.umd.js",
25
- "types": "./dist/types/jsx-runtime.d.ts"
26
- },
27
- "./jsx-dev-runtime": {
28
- "import": "./dist/jsx-dev-runtime.es.js",
29
- "require": "./dist/jsx-dev-runtime.umd.js",
30
- "types": "./dist/types/jsx-dev-runtime.d.ts"
12
+ "import": {
13
+ "types": "./dist/esm/index.d.ts",
14
+ "default": "./dist/esm/index.js"
15
+ },
16
+ "require": {
17
+ "types": "./dist/cjs/index.d.ts",
18
+ "default": "./dist/cjs/index.js"
19
+ },
20
+ "default": {
21
+ "types": "./dist/esm/index.d.ts",
22
+ "default": "./dist/esm/index.js"
23
+ }
31
24
  }
32
25
  },
33
26
  "devDependencies": {
34
27
  "@types/node": "^20.12.4",
35
28
  "rimraf": "^5.0.5",
36
- "typescript": "^5.4.4",
37
- "vite": "^5.2.8"
29
+ "typescript": "^5.4.4"
38
30
  },
39
31
  "scripts": {
40
- "dev": "vite",
41
- "build": "vite build&& tsc --emitDeclarationOnly && mv dist/src dist/types",
32
+ "build": "rimraf dist && tsc -b tsconfig.cjs.json tsconfig.esm.json",
42
33
  "release": "pnpm publish --no-git-checks --access public"
43
34
  }
44
35
  }
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});function v(n){throw new Error(n)}const y=(n,r=!1)=>{const e=n.split("/"),i=[];let t="^",a=1/0;for(let s=0;s<e.length;s++)if(e[s]==="*")s<e.length-1&&v(`Invalid path '/${n}'. Wildcard use is only permitted at the very end.`),t+="(/[a-zA-Z0-9.\\-/%_~!$&'()*+,;=:@]+)?",a=s;else if(e[s].startsWith(":"))i.push([e[s].endsWith("?")?e[s].slice(1,-1):e[s].slice(1),s]),t+="(/[a-zA-Z0-9.\\-%_~!$&'()*+,;=:@]+)",e[s].endsWith("?")&&(t+="?");else{let l=e[s].endsWith("?")?e[s].slice(0,-1):e[s];l=encodeURI(l),l=l.replace(/[\\.*+^$?{}|()[\]]/g,"\\$&"),t+=`(/${l})`,e[s].endsWith("?")&&(t+="?")}return t+="$",[new RegExp(t,r?"":"i"),i,a]};function R(...n){let r="";for(const e of n)r&&e&&(r+="/"),r+=e;return r}const u=n=>{const r=n[0]==="/"?n.slice(1):n;return r.endsWith("/")?r.slice(0,-1):r},p=n=>n==="*"||n.endsWith("/*"),S=n=>p(n)?n.slice(0,-2):n;function z(n){const r=[];for(const e of n)if(typeof e.path=="string")r.push(e);else for(const i of e.path)r.push({path:i,caseSensitive:e.caseSensitive,children:e.children,handler:e.handler});return r}function*$(n,r){const e=z(n);for(const i of e){let t=u(i.path);if(r){const c=S(r.path);t=R(c,t)}const a={path:t,handler:i.handler,caseSensitive:!!i.caseSensitive,parent:r};let s=!1;if(i.children)for(const c of $(i.children,a))c.path.length===t.length&&(s=!p(t)||p(c.path)),yield c;if(s)continue;const[l,o,h]=y(t,i.caseSensitive);a.matcher=l,a.params=o,a.wild=h,yield a}}function P(n){const r=[...$(n)];return r.sort((e,i)=>{for(let t=0;;t++){if(t>=i.params.length&&t>=e.params.length)return i.wild-e.wild;if(t>=i.params.length||t>=e.params.length){const a=t<e.params.length?e.params[t][1]:e.wild,s=t<i.params.length?i.params[t][1]:i.wild;return a===s?t<i.params.length?1:-1:s-a}else{if(e.params[t][1]>i.params[t][1])return-1;if(e.params[t][1]<i.params[t][1])return 1}}}),r}const I=(n,{basename:r="",children:e=[]}={})=>{const i=u(n),t=(()=>{let h=u(r).replace(/[\\.*+^$?{}|()[\]]/g,"\\$&");return h+="(/[a-zA-Z0-9.\\-/%_~!$&'()*+,;=:@]+)?",new RegExp(h,"i")})(),a=(()=>{const o=`/${i}`.match(t);return o?o[1]??"/":null})();if(a===null)return;const s={};let l;for(const o of P(e)){const h=a.match(o.matcher);if(!h)continue;for(const[d,g]of o.params){let w;(w=h[g+1])&&(s[d]=decodeURIComponent(w.slice(1)))}const c=[o];let f=o;for(;f.parent;)f=f.parent,c.push(f);let m=!1;const W=d=>{m=!0,l=d};for(let d=c.length-1;d>=0&&(c[d].handler?.({abort:W,params:s}),!m);d--);break}return l};exports.handleRoutes=I;
package/dist/freact.es.js DELETED
@@ -1,129 +0,0 @@
1
- function v(n) {
2
- throw new Error(n);
3
- }
4
- const z = (n, r = !1) => {
5
- const e = n.split("/"), i = [];
6
- let t = "^", a = 1 / 0;
7
- for (let s = 0; s < e.length; s++)
8
- if (e[s] === "*")
9
- s < e.length - 1 && v(
10
- `Invalid path '/${n}'. Wildcard use is only permitted at the very end.`
11
- ), t += "(/[a-zA-Z0-9.\\-/%_~!$&'()*+,;=:@]+)?", a = s;
12
- else if (e[s].startsWith(":"))
13
- i.push([
14
- e[s].endsWith("?") ? e[s].slice(1, -1) : e[s].slice(1),
15
- s
16
- ]), t += "(/[a-zA-Z0-9.\\-%_~!$&'()*+,;=:@]+)", e[s].endsWith("?") && (t += "?");
17
- else {
18
- let l = e[s].endsWith("?") ? e[s].slice(0, -1) : e[s];
19
- l = encodeURI(l), l = l.replace(/[\\.*+^$?{}|()[\]]/g, "\\$&"), t += `(/${l})`, e[s].endsWith("?") && (t += "?");
20
- }
21
- return t += "$", [new RegExp(t, r ? "" : "i"), i, a];
22
- };
23
- function R(...n) {
24
- let r = "";
25
- for (const e of n)
26
- r && e && (r += "/"), r += e;
27
- return r;
28
- }
29
- const p = (n) => {
30
- const r = n[0] === "/" ? n.slice(1) : n;
31
- return r.endsWith("/") ? r.slice(0, -1) : r;
32
- }, u = (n) => n === "*" || n.endsWith("/*"), y = (n) => u(n) ? n.slice(0, -2) : n;
33
- function P(n) {
34
- const r = [];
35
- for (const e of n)
36
- if (typeof e.path == "string")
37
- r.push(e);
38
- else
39
- for (const i of e.path)
40
- r.push({
41
- path: i,
42
- caseSensitive: e.caseSensitive,
43
- children: e.children,
44
- handler: e.handler
45
- });
46
- return r;
47
- }
48
- function* $(n, r) {
49
- const e = P(n);
50
- for (const i of e) {
51
- let t = p(i.path);
52
- if (r) {
53
- const c = y(r.path);
54
- t = R(c, t);
55
- }
56
- const a = {
57
- path: t,
58
- handler: i.handler,
59
- caseSensitive: !!i.caseSensitive,
60
- parent: r
61
- };
62
- let s = !1;
63
- if (i.children)
64
- for (const c of $(i.children, a))
65
- c.path.length === t.length && (s = !u(t) || u(c.path)), yield c;
66
- if (s)
67
- continue;
68
- const [l, o, h] = z(t, i.caseSensitive);
69
- a.matcher = l, a.params = o, a.wild = h, yield a;
70
- }
71
- }
72
- function S(n) {
73
- const r = [...$(n)];
74
- return r.sort((e, i) => {
75
- for (let t = 0; ; t++) {
76
- if (t >= i.params.length && t >= e.params.length)
77
- return i.wild - e.wild;
78
- if (t >= i.params.length || t >= e.params.length) {
79
- const a = t < e.params.length ? e.params[t][1] : e.wild, s = t < i.params.length ? i.params[t][1] : i.wild;
80
- return a === s ? t < i.params.length ? 1 : -1 : s - a;
81
- } else {
82
- if (e.params[t][1] > i.params[t][1])
83
- return -1;
84
- if (e.params[t][1] < i.params[t][1])
85
- return 1;
86
- }
87
- }
88
- }), r;
89
- }
90
- const x = (n, {
91
- basename: r = "",
92
- children: e = []
93
- } = {}) => {
94
- const i = p(n), t = (() => {
95
- let h = p(r).replace(/[\\.*+^$?{}|()[\]]/g, "\\$&");
96
- return h += "(/[a-zA-Z0-9.\\-/%_~!$&'()*+,;=:@]+)?", new RegExp(h, "i");
97
- })(), a = (() => {
98
- const o = `/${i}`.match(t);
99
- return o ? o[1] ?? "/" : null;
100
- })();
101
- if (a === null)
102
- return;
103
- const s = {};
104
- let l;
105
- for (const o of S(e)) {
106
- const h = a.match(o.matcher);
107
- if (!h)
108
- continue;
109
- for (const [d, g] of o.params) {
110
- let w;
111
- (w = h[g + 1]) && (s[d] = decodeURIComponent(w.slice(1)));
112
- }
113
- const c = [o];
114
- let f = o;
115
- for (; f.parent; )
116
- f = f.parent, c.push(f);
117
- let m = !1;
118
- const W = (d) => {
119
- m = !0, l = d;
120
- };
121
- for (let d = c.length - 1; d >= 0 && (c[d].handler?.({ abort: W, params: s }), !m); d--)
122
- ;
123
- break;
124
- }
125
- return l;
126
- };
127
- export {
128
- x as handleRoutes
129
- };
@@ -1 +0,0 @@
1
- {"program":{"fileNames":["../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es5.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.dom.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.esnext.object.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/.pnpm/typescript@5.4.4/node_modules/typescript/lib/lib.esnext.full.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/assert.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/assert/strict.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/header.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/readable.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/file.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/fetch.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/formdata.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/connector.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/client.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/errors.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/dispatcher.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-dispatcher.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-origin.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool-stats.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/handlers.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/balanced-pool.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/agent.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-interceptor.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-agent.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-client.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-pool.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-errors.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/proxy-agent.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/api.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cookies.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/patch.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/filereader.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/websocket.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/content-type.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cache.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/interceptors.d.ts","../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/index.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/globals.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/async_hooks.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/buffer.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/child_process.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/cluster.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/console.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/constants.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/crypto.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/dgram.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/dns.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/dns/promises.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/domain.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/dom-events.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/events.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/fs.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/fs/promises.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/http.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/http2.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/https.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/inspector.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/module.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/net.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/os.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/path.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/perf_hooks.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/process.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/punycode.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/querystring.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/readline.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/readline/promises.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/repl.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/sea.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/stream.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/stream/promises.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/stream/consumers.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/stream/web.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/string_decoder.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/test.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/timers.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/timers/promises.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/tls.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/trace_events.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/tty.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/url.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/util.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/v8.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/vm.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/wasi.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/worker_threads.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/zlib.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/globals.global.d.ts","../node_modules/.pnpm/@types+node@20.12.4/node_modules/@types/node/index.d.ts","../node_modules/.pnpm/esbuild@0.18.20/node_modules/esbuild/lib/main.d.ts","../node_modules/.pnpm/vite@4.5.3_@types+node@20.12.4/node_modules/vite/types/metadata.d.ts","../node_modules/.pnpm/vite@4.5.3_@types+node@20.12.4/node_modules/vite/types/hmrpayload.d.ts","../node_modules/.pnpm/vite@4.5.3_@types+node@20.12.4/node_modules/vite/types/customevent.d.ts","../node_modules/.pnpm/rollup@3.29.4/node_modules/rollup/dist/rollup.d.ts","../node_modules/.pnpm/vite@4.5.3_@types+node@20.12.4/node_modules/vite/types/importglob.d.ts","../node_modules/.pnpm/source-map-js@1.2.0/node_modules/source-map-js/source-map.d.ts","../node_modules/.pnpm/postcss@8.4.38/node_modules/postcss/lib/previous-map.d.ts","../node_modules/.pnpm/postcss@8.4.38/node_modules/postcss/lib/input.d.ts","../node_modules/.pnpm/postcss@8.4.38/node_modules/postcss/lib/css-syntax-error.d.ts","../node_modules/.pnpm/postcss@8.4.38/node_modules/postcss/lib/declaration.d.ts","../node_modules/.pnpm/postcss@8.4.38/node_modules/postcss/lib/root.d.ts","../node_modules/.pnpm/postcss@8.4.38/node_modules/postcss/lib/warning.d.ts","../node_modules/.pnpm/postcss@8.4.38/node_modules/postcss/lib/lazy-result.d.ts","../node_modules/.pnpm/postcss@8.4.38/node_modules/postcss/lib/no-work-result.d.ts","../node_modules/.pnpm/postcss@8.4.38/node_modules/postcss/lib/processor.d.ts","../node_modules/.pnpm/postcss@8.4.38/node_modules/postcss/lib/result.d.ts","../node_modules/.pnpm/postcss@8.4.38/node_modules/postcss/lib/document.d.ts","../node_modules/.pnpm/postcss@8.4.38/node_modules/postcss/lib/rule.d.ts","../node_modules/.pnpm/postcss@8.4.38/node_modules/postcss/lib/node.d.ts","../node_modules/.pnpm/postcss@8.4.38/node_modules/postcss/lib/comment.d.ts","../node_modules/.pnpm/postcss@8.4.38/node_modules/postcss/lib/container.d.ts","../node_modules/.pnpm/postcss@8.4.38/node_modules/postcss/lib/at-rule.d.ts","../node_modules/.pnpm/postcss@8.4.38/node_modules/postcss/lib/list.d.ts","../node_modules/.pnpm/postcss@8.4.38/node_modules/postcss/lib/postcss.d.ts","../node_modules/.pnpm/vite@4.5.3_@types+node@20.12.4/node_modules/vite/dist/node/index.d.ts","../vite.config.ts","../src/raise.ts","../src/compilepath.ts","../src/concatpaths.ts","../src/normalizepath.ts","../src/stripwild.ts","../src/handleroutes.ts","../src/index.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","886e50ef125efb7878f744e86908884c0133e7a6d9d80013f421b0cd8fb2af94",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"76f838d5d49b65de83bc345c04aa54c62a3cfdb72a477dc0c0fce89a30596c30","affectsGlobalScope":true},{"version":"73e370058f82add1fdbc78ef3d1aab110108f2d5d9c857cb55d3361982347ace","affectsGlobalScope":true},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"08a58483392df5fcc1db57d782e87734f77ae9eab42516028acbfe46f29a3ef7","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"15b98a533864d324e5f57cd3cfc0579b231df58c1c0f6063ea0fcb13c3c74ff9","affectsGlobalScope":true},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"bde31fd423cd93b0eff97197a3f66df7c93e8c0c335cbeb113b7ff1ac35c23f4","efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"7fd7fcbf021a5845bdd9397d4649fcf2fe17152d2098140fc723099a215d19ad","affectsGlobalScope":true},"df3389f71a71a38bc931aaf1ef97a65fada98f0a27f19dd12f8b8de2b0f4e461","d69a3298a197fe5d59edba0ec23b4abf2c8e7b8c6718eac97833633cd664e4c9",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"8b809082dfeffc8cc4f3b9c59f55c0ff52ba12f5ae0766cb5c35deee83b8552e","affectsGlobalScope":true},"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","d4f9d3ae2fe1ae199e1c832cca2c44f45e0b305dfa2808afdd51249b6f4a5163","7525257b4aa35efc7a1bbc00f205a9a96c4e4ab791da90db41b77938c4e0c18e","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"9c611eff81287837680c1f4496daf9e737d6f3a1ff17752207814b8f8e1265af","affectsGlobalScope":true},"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","b5d4e3e524f2eead4519c8e819eaf7fa44a27c22418eff1b7b2d0ebc5fdc510d","afb1701fd4be413a8a5a88df6befdd4510c30a31372c07a4138facf61594c66d","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","5e8dc64e7e68b2b3ea52ed685cf85239e0d5fb9df31aabc94370c6bc7e19077b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"c07146dbbbd8b347241b5df250a51e48f2d7bef19b1e187b1a3f20c849988ff1","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"46755a4afc53df75f0bfce72259fb971daac826b0cdd8c4eaccad2755a817403","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7fa32887f8a97909fca35ebba3740f8caf8df146618d8fff957a3f89f67a2f6a","9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"94c086dff8dbc5998749326bc69b520e8e4273fb5b7b58b50e0210e0885dfcde","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"ebe5facd12fd7745cda5f4bc3319f91fb29dc1f96e57e9c6f8b260a7cc5b67ee","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","21c56c6e8eeacef15f63f373a29fab6a2b36e4705be7a528aae8c51469e2737b",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","850040826cfa77593d44f44487133af21917f4f21507258bd4269501b80d32f0","8f07f2b6514744ac96e51d7cb8518c0f4de319471237ea10cf688b8d0e9d0225","bcb6ea18f23dae2c48459d7b86d3adccd6898f824fcbf9da08b935f559896580","1363ba7d52f2353d0c4306d0ecdaf171bf4509c0148842f9fd8d3986c098a2eb","3a24f4a428f24cad90b83fab329a620c4adbace083a8eda62c63365065b79e73","739c2c46edc112421fc023c24b4898b1f413f792bb6a02b40ba182c648e56c2f","858d0d831826c6eb563df02f7db71c90e26deadd0938652096bea3cc14899700","8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","18c04c22baee54d13b505fa6e8bcd4223f8ba32beee80ec70e6cac972d1cc9a6","5e92a2e8ba5cbcdfd9e51428f94f7bd0ab6e45c9805b1c9552b64abaffad3ce3","44fe135be91bc8edc495350f79cd7a2e5a8b7a7108b10b2599a321b9248657dc","1d51250438f2071d2803053d9aec7973ef22dfffd80685a9ec5fb3fa082f4347","7ec359bbc29b69d4063fe7dad0baaf35f1856f914db16b3f4f6e3e1bca4099fa","b9261ac3e9944d3d72c5ee4cf888ad35d9743a5563405c6963c4e43ee3708ca4","c84fd54e8400def0d1ef1569cafd02e9f39a622df9fa69b57ccc82128856b916","c7a38c1ef8d6ae4bf252be67bd9a8b012b2cdea65bd6225a3d1a726c4f0d52b6","e773630f8772a06e82d97046fc92da59ada8414c61689894fff0155dd08f102c","edf7cf322a3f3e6ebca77217a96ed4480f5a7d8d0084f8b82f1c281c92780f3a","e97321edbef59b6f68839bcdfd5ae1949fe80d554d2546e35484a8d044a04444","96aed8ec4d342ec6ac69f0dcdfb064fd17b10cb13825580451c2cebbd556e965","106e607866d6c3e9a497a696ac949c3e2ec46b6e7dda35aabe76100bf740833b","28ffc4e76ad54f4b34933d78ff3f95b763accf074e8630a6d926f3fd5bbd8908","304af95fcace2300674c969700b39bc0ee05be536880daa844c64dc8f90ef482","3d65182eff7bbb16de1a69e17651c51083f740af11a1a92359be6dab939e8bcf","670ddaf1f1b881abaa1cc28236430d86b691affbeaefd66b3ee1db31fdfb8dba","77b411edffb8d1fa25c07b5c3232e214f5f54b1fbb5e3e9eefcc9fd915bea582",{"version":"669359261dca6683e0904c94431581f3274f9d0f72a8c1bc37ccfb044229507a","signature":"4b96dd19fd2949d28ce80e913412b0026dc421e5bf6c31d87c7b5eb11b5753b4"},{"version":"1cddf5653596757e4bcc4083ddd9982692da27d2051523f84c4bf87e5fcbe7d1","signature":"eafde8539e29d5579c843df5c77795727d8fabebfc167d036b53afbc07766fae"},{"version":"62d797f2b2ce2b4ee1e611d19c90aaad171ffa524a37a6084e3a00cceee4553d","signature":"9c3923f1a53ac27d1d4e50257c594e0803172e20626861735a878c3793a5dc8d"},{"version":"40c095adeb00c66ceb93547384a9ac23a6c4bcff9128262a52a8f3b98502b036","signature":"d85134e86f9dd3f6411ce0997e882c12641ef1c04b1af9634216fdcb624768bd"},{"version":"abcbe176a452748346cda7b9d12efa915dd9a4b7e8fb6776e5395fb85ef4f717","signature":"344dbb6caae29db01b12e9906d614e0f178cafb5b02f7434ca8d83b81191de42"},{"version":"9c2557c7ea4b3c23d875e082cc20db814c6eeebb6fa168b40a8a70de244a6568","signature":"dcda19aafe4b64119b003185c88b2e9905c48aaddfc694c12aaaeb0f5537e5a8"},{"version":"a07e4006402241282079c87d6c926bfa68495f1c13770345504f79aa7aab5543","signature":"e0bc3584cafe552d57f531f11bdab5bbaf2075f55e4330c11f52fe26ac10cfcf"},"23b2c483d66a21c5c86e7a8d2b4b0d971289d204e73a00ec27e75d55451fd28f"],"root":[[187,194]],"options":{"allowJs":true,"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":4,"jsxImportSource":"@","module":99,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"outDir":"./","skipLibCheck":true,"strict":true,"strictFunctionTypes":true,"strictNullChecks":true,"target":99},"fileIdsList":[[74],[109],[110,115,144],[111,122,123,130,141,152],[111,112,122,130],[113,153],[114,115,123,131],[115,141,149],[116,118,122,130],[109,117],[118,119],[122],[120,122],[109,122],[122,123,124,141,152],[122,123,124,137,141,144],[107,110,157],[118,122,125,130,141,152],[122,123,125,126,130,141,149,152],[125,127,141,149,152],[74,75,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159],[122,128],[129,152,157],[118,122,130,141],[131],[132],[109,133],[134,151,157],[135],[136],[122,137,138],[137,139,153,155],[110,122,141,142,143,144],[110,141,143],[141,142],[144],[145],[109,141],[122,147,148],[147,148],[115,130,141,149],[150],[130,151],[110,125,136,152],[115,153],[141,154],[129,155],[156],[110,115,122,124,133,141,152,155,157],[141,158],[182],[180,182],[171,179,180,181,183],[169],[172,177,182,185],[168,185],[172,173,176,177,178,185],[172,173,174,176,177,185],[169,170,171,172,173,177,178,179,181,182,183,185],[167,169,170,171,172,173,174,176,177,178,179,180,181,182,183,184],[167,185],[172,174,175,177,178,185],[176,185],[177,178,182,185],[170,180],[167],[84,88,152],[84,141,152],[79],[81,84,149,152],[130,149],[160],[79,160],[81,84,130,152],[76,77,80,83,110,122,141,152],[76,82],[80,84,110,144,152,160],[110,160],[100,110,160],[78,79,160],[84],[78,79,80,81,82,83,84,85,86,88,89,90,91,92,93,94,95,96,97,98,99,101,102,103,104,105,106],[84,91,92],[82,84,92,93],[83],[76,79,84],[84,88,92,93],[88],[82,84,87,152],[76,81,82,84,88,91],[110,141],[79,84,100,110,157,160],[122,123,125,127,130,141,149,152,158,160,161,162,163,164,165,166,185],[163],[165],[188],[189,190,191,192],[193],[132,186],[186]],"referencedMap":[[74,1],[75,1],[109,2],[110,3],[111,4],[112,5],[113,6],[114,7],[115,8],[116,9],[117,10],[118,11],[119,11],[121,12],[120,13],[122,14],[123,15],[124,16],[108,17],[125,18],[126,19],[127,20],[160,21],[128,22],[129,23],[130,24],[131,25],[132,26],[133,27],[134,28],[135,29],[136,30],[137,31],[138,31],[139,32],[141,33],[143,34],[142,35],[144,36],[145,37],[146,38],[147,39],[148,40],[149,41],[150,42],[151,43],[152,44],[153,45],[154,46],[155,47],[156,48],[157,49],[158,50],[183,51],[181,52],[182,53],[170,54],[171,52],[178,55],[169,56],[174,57],[175,58],[180,59],[185,60],[168,61],[176,62],[177,63],[172,64],[179,51],[173,65],[167,66],[91,67],[98,68],[90,67],[105,69],[82,70],[81,71],[104,72],[99,73],[102,74],[84,75],[83,76],[79,77],[78,78],[101,79],[80,80],[85,81],[89,81],[107,82],[106,81],[93,83],[94,84],[96,85],[92,86],[95,87],[100,72],[87,88],[88,89],[97,90],[77,91],[103,92],[186,93],[164,94],[162,95],[189,96],[193,97],[194,98],[187,99]],"exportedModulesMap":[[74,1],[75,1],[109,2],[110,3],[111,4],[112,5],[113,6],[114,7],[115,8],[116,9],[117,10],[118,11],[119,11],[121,12],[120,13],[122,14],[123,15],[124,16],[108,17],[125,18],[126,19],[127,20],[160,21],[128,22],[129,23],[130,24],[131,25],[132,26],[133,27],[134,28],[135,29],[136,30],[137,31],[138,31],[139,32],[141,33],[143,34],[142,35],[144,36],[145,37],[146,38],[147,39],[148,40],[149,41],[150,42],[151,43],[152,44],[153,45],[154,46],[155,47],[156,48],[157,49],[158,50],[183,51],[181,52],[182,53],[170,54],[171,52],[178,55],[169,56],[174,57],[175,58],[180,59],[185,60],[168,61],[176,62],[177,63],[172,64],[179,51],[173,65],[167,66],[91,67],[98,68],[90,67],[105,69],[82,70],[81,71],[104,72],[99,73],[102,74],[84,75],[83,76],[79,77],[78,78],[101,79],[80,80],[85,81],[89,81],[107,82],[106,81],[93,83],[94,84],[96,85],[92,86],[95,87],[100,72],[87,88],[88,89],[97,90],[77,91],[103,92],[186,93],[164,94],[162,95],[194,98],[187,100]],"semanticDiagnosticsPerFile":[74,75,109,110,111,112,113,114,115,116,117,118,119,121,120,122,123,124,108,159,125,126,127,160,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,142,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,161,183,181,182,170,171,178,169,174,184,175,180,185,168,176,177,172,179,173,165,167,71,72,14,12,13,18,17,2,19,20,21,22,23,24,25,26,3,27,4,28,32,29,30,31,33,34,35,5,36,37,38,39,6,43,40,41,42,44,7,45,50,51,46,47,48,49,8,55,52,53,54,56,9,57,58,59,62,60,61,63,64,10,1,65,11,69,67,73,66,70,68,16,15,91,98,90,105,82,81,104,99,102,84,83,79,78,101,80,85,86,89,76,107,106,93,94,96,92,95,100,87,88,97,77,103,186,164,163,166,162,189,190,193,194,191,188,192,187]},"version":"5.4.4"}
@@ -1,2 +0,0 @@
1
- declare const _default: import("vite").UserConfig;
2
- export default _default;
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes