5htp 0.6.3-5 → 0.6.3-6
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/cli.js +4 -0
- package/compiler/index.ts +1 -1
- package/index.ts +1 -3
- package/package.json +2 -14
- package/tsconfig.json +1 -0
- package/bin/5htp.js +0 -13
package/cli.js
ADDED
package/compiler/index.ts
CHANGED
|
@@ -436,7 +436,7 @@ declare module '@server/app' {
|
|
|
436
436
|
|
|
437
437
|
declare module '@request' {
|
|
438
438
|
import type { TRouterContext } from '@server/services/router/response';
|
|
439
|
-
const routerContext: TRouterContext<
|
|
439
|
+
const routerContext: TRouterContext<CrossPath["Router"]>;
|
|
440
440
|
export = routerContext;
|
|
441
441
|
}
|
|
442
442
|
|
package/index.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,25 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "5htp",
|
|
3
3
|
"description": "Convenient TypeScript framework designed for Performance and Productivity.",
|
|
4
|
-
"version": "0.6.3-
|
|
4
|
+
"version": "0.6.3-6",
|
|
5
5
|
"author": "Gaetan Le Gac (https://github.com/gaetanlegac)",
|
|
6
6
|
"repository": "git://github.com/gaetanlegac/5htp.git",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"bin": {
|
|
9
|
-
"5htp": "
|
|
9
|
+
"5htp": "cli.js"
|
|
10
10
|
},
|
|
11
|
-
"files": [
|
|
12
|
-
"app/**/*",
|
|
13
|
-
"bin/5htp.js",
|
|
14
|
-
"commands/**/*",
|
|
15
|
-
"compiler/**/*",
|
|
16
|
-
"index.ts",
|
|
17
|
-
"paths.ts",
|
|
18
|
-
"print.ts",
|
|
19
|
-
"readme.md",
|
|
20
|
-
"tsconfig.json",
|
|
21
|
-
"utils/**/*"
|
|
22
|
-
],
|
|
23
11
|
"engines": {
|
|
24
12
|
"node": ">=16.1.0",
|
|
25
13
|
"npm": ">=3.10.10"
|
package/tsconfig.json
CHANGED