@titanpl/cli 26.16.11 → 26.17.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@titanpl/cli",
3
- "version": "26.16.11",
3
+ "version": "26.17.0",
4
4
  "description": "The unified CLI for Titan Planet. Use it to create, manage, build, and deploy high-performance backend projects.",
5
5
  "keywords": [
6
6
  "titanpl",
@@ -19,12 +19,12 @@
19
19
  "titan": "./index.js"
20
20
  },
21
21
  "optionalDependencies": {
22
- "@titanpl/engine-win32-x64": "26.16.11",
23
- "@titanpl/engine-linux-x64": "26.16.11",
24
- "@titanpl/engine-darwin-arm64": "26.16.11"
22
+ "@titanpl/engine-win32-x64": "26.17.0",
23
+ "@titanpl/engine-linux-x64": "26.17.0",
24
+ "@titanpl/engine-darwin-arm64": "26.17.0"
25
25
  },
26
26
  "dependencies": {
27
- "@titanpl/packet": "26.16.11",
27
+ "@titanpl/packet": "26.17.0",
28
28
  "prompts": "^2.4.2",
29
29
  "commander": "^11.0.0",
30
30
  "chalk": "^4.1.2"
@@ -1,7 +1,7 @@
1
+ import { dev } from "@titanpl/packet";
1
2
  import { startEngine } from "../engine.js";
2
3
 
3
4
  export async function devCommand() {
4
- // The Titan Engine now handles all compilation, watch, and routing natively.
5
- // There is no need for JS-based watchers or Node.js process managers.
5
+ await dev(process.cwd());
6
6
  startEngine(true);
7
7
  }