@celsian/vura-cli 0.2.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.
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Vura CLI
3
+ *
4
+ * Minimal CLI that wires together @celsian/vura-core's build pipeline
5
+ * with project configuration and deployment providers.
6
+ */
7
+ export declare function run(args: string[]): Promise<void>;
8
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAgBH,wBAAsB,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAgBvD"}
package/dist/index.js ADDED
@@ -0,0 +1,48 @@
1
+ /**
2
+ * Vura CLI
3
+ *
4
+ * Minimal CLI that wires together @celsian/vura-core's build pipeline
5
+ * with project configuration and deployment providers.
6
+ */
7
+ import { buildCommand } from './commands/build.js';
8
+ import { manifestCommand } from './commands/manifest.js';
9
+ import { deployCommand } from './commands/deploy.js';
10
+ import { devCommand } from './commands/dev.js';
11
+ import { adminCommand } from './commands/admin.js';
12
+ const COMMANDS = {
13
+ build: buildCommand,
14
+ manifest: manifestCommand,
15
+ deploy: deployCommand,
16
+ dev: devCommand,
17
+ admin: adminCommand,
18
+ };
19
+ export async function run(args) {
20
+ const command = args[0];
21
+ if (!command || command === '--help' || command === '-h') {
22
+ printHelp();
23
+ return;
24
+ }
25
+ const handler = COMMANDS[command];
26
+ if (!handler) {
27
+ console.error(`Unknown command: ${command}`);
28
+ printHelp();
29
+ process.exit(1);
30
+ }
31
+ await handler(args.slice(1));
32
+ }
33
+ function printHelp() {
34
+ console.log(`
35
+ vura — Vura CLI
36
+
37
+ Commands:
38
+ dev Start local development server
39
+ build Build the project for deployment
40
+ deploy Explain managed deployment availability (not in OSS CLI yet)
41
+ admin Launch the admin dashboard
42
+ manifest Print the route manifest (debug)
43
+
44
+ Options:
45
+ --help, -h Show this help message
46
+ `);
47
+ }
48
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAEnD,MAAM,QAAQ,GAAsD;IAClE,KAAK,EAAE,YAAY;IACnB,QAAQ,EAAE,eAAe;IACzB,MAAM,EAAE,aAAa;IACrB,GAAG,EAAE,UAAU;IACf,KAAK,EAAE,YAAY;CACpB,CAAC;AAEF,MAAM,CAAC,KAAK,UAAU,GAAG,CAAC,IAAc;IACtC,MAAM,OAAO,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;IAExB,IAAI,CAAC,OAAO,IAAI,OAAO,KAAK,QAAQ,IAAI,OAAO,KAAK,IAAI,EAAE,CAAC;QACzD,SAAS,EAAE,CAAC;QACZ,OAAO;IACT,CAAC;IAED,MAAM,OAAO,GAAG,QAAQ,CAAC,OAAO,CAAC,CAAC;IAClC,IAAI,CAAC,OAAO,EAAE,CAAC;QACb,OAAO,CAAC,KAAK,CAAC,oBAAoB,OAAO,EAAE,CAAC,CAAC;QAC7C,SAAS,EAAE,CAAC;QACZ,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC;IAED,MAAM,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;AAC/B,CAAC;AAED,SAAS,SAAS;IAChB,OAAO,CAAC,GAAG,CAAC;;;;;;;;;;;;CAYb,CAAC,CAAC;AACH,CAAC"}
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@celsian/vura-cli",
3
+ "version": "0.2.0",
4
+ "description": "Vura CLI — build and deploy full-stack apps",
5
+ "type": "module",
6
+ "bin": {
7
+ "vura": "bin.js"
8
+ },
9
+ "exports": {
10
+ ".": "./dist/index.js"
11
+ },
12
+ "files": [
13
+ "bin.js",
14
+ "dist"
15
+ ],
16
+ "scripts": {
17
+ "build": "tsc -b",
18
+ "dev": "tsc -b --watch",
19
+ "prepack": "pnpm run build"
20
+ },
21
+ "dependencies": {
22
+ "@celsian/vura-core": "workspace:0.2.0",
23
+ "esbuild": "^0.27.3"
24
+ },
25
+ "license": "MIT",
26
+ "publishConfig": {
27
+ "access": "public"
28
+ },
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "git+https://github.com/CelsianJs/vura.git"
32
+ },
33
+ "homepage": "https://github.com/CelsianJs/vura#readme",
34
+ "bugs": {
35
+ "url": "https://github.com/CelsianJs/vura/issues"
36
+ },
37
+ "keywords": [
38
+ "vura",
39
+ "cli",
40
+ "full-stack",
41
+ "deployment",
42
+ "typescript"
43
+ ],
44
+ "engines": {
45
+ "node": ">=20 <23"
46
+ }
47
+ }