5htp 0.6.3-4 → 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/app/index.ts CHANGED
File without changes
package/cli.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ console.log("Running 5HTP via ts-node...");
3
+ require('ts-node/register/transpile-only');
4
+ require('./index.ts');
package/index.ts CHANGED
@@ -1,5 +1,3 @@
1
- #!/usr/bin/env -S npx ts-node
2
-
3
1
  process.traceDeprecation = true;
4
2
 
5
3
  /*----------------------------------
@@ -186,4 +184,4 @@ export class CLI {
186
184
 
187
185
  }
188
186
 
189
- export default new CLI()
187
+ export default new CLI()
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "5htp",
3
3
  "description": "Convenient TypeScript framework designed for Performance and Productivity.",
4
- "version": "0.6.3-4",
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": "index.ts"
9
+ "5htp": "cli.js"
10
10
  },
11
11
  "engines": {
12
12
  "node": ">=16.1.0",