@voltx/cli 0.4.1 → 0.4.4

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
+ MIT License
2
+
3
+ Copyright (c) 2025 Promptly AI Team
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 all
13
+ 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 THE
21
+ SOFTWARE.
package/dist/cli.js CHANGED
@@ -1811,7 +1811,7 @@ var init_index = __esm({
1811
1811
  init_build();
1812
1812
  init_start();
1813
1813
  init_generate();
1814
- CLI_VERSION = "0.4.1";
1814
+ CLI_VERSION = "0.4.4";
1815
1815
  }
1816
1816
  });
1817
1817
 
package/dist/cli.mjs CHANGED
File without changes
package/dist/create.js CHANGED
File without changes
package/dist/create.mjs CHANGED
File without changes
package/dist/index.d.mts CHANGED
@@ -4,6 +4,6 @@ export { BuildOptions, runBuild } from './build.mjs';
4
4
  export { StartOptions, runStart } from './start.mjs';
5
5
  export { GenerateOptions, GeneratorType, runGenerate } from './generate.mjs';
6
6
 
7
- declare const CLI_VERSION = "0.4.1";
7
+ declare const CLI_VERSION = "0.4.4";
8
8
 
9
9
  export { CLI_VERSION };
package/dist/index.d.ts CHANGED
@@ -4,6 +4,6 @@ export { BuildOptions, runBuild } from './build.js';
4
4
  export { StartOptions, runStart } from './start.js';
5
5
  export { GenerateOptions, GeneratorType, runGenerate } from './generate.js';
6
6
 
7
- declare const CLI_VERSION = "0.4.1";
7
+ declare const CLI_VERSION = "0.4.4";
8
8
 
9
9
  export { CLI_VERSION };
package/dist/index.js CHANGED
@@ -1747,7 +1747,7 @@ function toCamelCase(str) {
1747
1747
  }
1748
1748
 
1749
1749
  // src/index.ts
1750
- var CLI_VERSION = "0.4.1";
1750
+ var CLI_VERSION = "0.4.4";
1751
1751
  // Annotate the CommonJS export names for ESM import in node:
1752
1752
  0 && (module.exports = {
1753
1753
  CLI_VERSION,
package/dist/index.mjs CHANGED
@@ -16,7 +16,7 @@ import {
16
16
  import "./chunk-IV352HZA.mjs";
17
17
 
18
18
  // src/index.ts
19
- var CLI_VERSION = "0.4.1";
19
+ var CLI_VERSION = "0.4.4";
20
20
  export {
21
21
  CLI_VERSION,
22
22
  createProject,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voltx/cli",
3
- "version": "0.4.1",
3
+ "version": "0.4.4",
4
4
  "description": "VoltX CLI — dev server, build, start, generate, and scaffolding",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -15,13 +15,8 @@
15
15
  "require": "./dist/index.js"
16
16
  }
17
17
  },
18
- "scripts": {
19
- "build": "tsup src/index.ts src/cli.ts src/create.ts src/welcome.ts src/dev.ts src/build.ts src/start.ts src/generate.ts --format cjs,esm --dts",
20
- "dev": "tsup src/index.ts src/cli.ts src/create.ts src/welcome.ts src/dev.ts src/build.ts src/start.ts src/generate.ts --format cjs,esm --dts --watch",
21
- "clean": "rm -rf dist"
22
- },
23
18
  "dependencies": {
24
- "@voltx/core": "^0.4.1"
19
+ "@voltx/core": "^0.4.4"
25
20
  },
26
21
  "peerDependencies": {
27
22
  "tsx": ">=4.0.0",
@@ -47,7 +42,9 @@
47
42
  "tsup": "^8.0.0",
48
43
  "typescript": "^5.7.0"
49
44
  },
50
- "files": ["dist"],
45
+ "files": [
46
+ "dist"
47
+ ],
51
48
  "license": "MIT",
52
49
  "repository": {
53
50
  "type": "git",
@@ -56,5 +53,19 @@
56
53
  },
57
54
  "homepage": "https://voltx.co.in",
58
55
  "bugs": "https://github.com/codewithshail/voltx/issues",
59
- "keywords": ["voltx", "cli", "dev", "build", "start", "generate", "ai", "framework"]
60
- }
56
+ "keywords": [
57
+ "voltx",
58
+ "cli",
59
+ "dev",
60
+ "build",
61
+ "start",
62
+ "generate",
63
+ "ai",
64
+ "framework"
65
+ ],
66
+ "scripts": {
67
+ "build": "tsup src/index.ts src/cli.ts src/create.ts src/welcome.ts src/dev.ts src/build.ts src/start.ts src/generate.ts --format cjs,esm --dts",
68
+ "dev": "tsup src/index.ts src/cli.ts src/create.ts src/welcome.ts src/dev.ts src/build.ts src/start.ts src/generate.ts --format cjs,esm --dts --watch",
69
+ "clean": "rm -rf dist"
70
+ }
71
+ }