@arcote.tech/arc-cli 0.1.2 → 0.1.3

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.
Files changed (3) hide show
  1. package/dist/index.js +19 -1453
  2. package/package.json +1 -1
  3. package/src/index.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcote.tech/arc-cli",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "CLI tool for Arc framework",
5
5
  "module": "index.ts",
6
6
  "main": "dist/index.js",
package/src/index.ts CHANGED
@@ -8,7 +8,7 @@ import { dev } from "./commands/dev";
8
8
  const program = new Command();
9
9
 
10
10
  // Setup program information
11
- program.name("arc").description("CLI tool for Arc framework").version("0.0.1");
11
+ program.name("arc").description("CLI tool for Arc framework").version("0.0.2");
12
12
 
13
13
  // Register commands
14
14
  program