@arcote.tech/arc-cli 0.1.3 → 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/dist/index.js CHANGED
@@ -178462,6 +178462,7 @@ async function buildDeclarations(configPath, config, client) {
178462
178462
  const compilerOptions = {
178463
178463
  declaration: true,
178464
178464
  emitDeclarationOnly: true,
178465
+ disableSizeLimit: true,
178465
178466
  outDir: join2(configDir, config.outDir, client.toLowerCase())
178466
178467
  };
178467
178468
  const program2 = ts.createProgram([filePath, clientTypesPath], compilerOptions);
@@ -178609,7 +178610,7 @@ async function dev() {
178609
178610
 
178610
178611
  // src/index.ts
178611
178612
  var program2 = new Command;
178612
- program2.name("arc").description("CLI tool for Arc framework").version("0.0.2");
178613
+ program2.name("arc").description("CLI tool for Arc framework").version("0.0.3");
178613
178614
  program2.command("dev").description("Run development mode for Arc framework").action(dev);
178614
178615
  program2.command("build").description("Build all clients and declarations").action(build);
178615
178616
  program2.parse(process.argv);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcote.tech/arc-cli",
3
- "version": "0.1.3",
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.2");
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