@arcote.tech/arc-cli 0.1.2 → 0.1.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/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.4",
4
4
  "description": "CLI tool for Arc framework",
5
5
  "module": "index.ts",
6
6
  "main": "dist/index.js",
@@ -15,13 +15,11 @@
15
15
  "commander": "^11.1.0",
16
16
  "chokidar": "^3.5.3",
17
17
  "glob": "^10.3.10",
18
- "find-up": "^7.0.0",
19
- "typescript": "^5.0.0"
18
+ "find-up": "^7.0.0"
20
19
  },
21
20
  "devDependencies": {
22
21
  "@types/bun": "latest",
23
- "@types/node": "^20.10.5",
24
- "typescript": "^5.2.2"
22
+ "@types/node": "^20.10.5"
25
23
  },
26
24
  "peerDependencies": {
27
25
  "typescript": "^5.0.0"
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.3");
12
12
 
13
13
  // Register commands
14
14
  program
@@ -114,6 +114,7 @@ export async function buildDeclarations(
114
114
  const compilerOptions: ts.CompilerOptions = {
115
115
  declaration: true,
116
116
  emitDeclarationOnly: true,
117
+ disableSizeLimit: true,
117
118
  outDir: join(configDir, config.outDir, client.toLowerCase()),
118
119
  };
119
120