@arcote.tech/arc-cli 0.1.4 → 0.1.5

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,7 +178462,6 @@ async function buildDeclarations(configPath, config, client) {
178462
178462
  const compilerOptions = {
178463
178463
  declaration: true,
178464
178464
  emitDeclarationOnly: true,
178465
- disableSizeLimit: true,
178466
178465
  outDir: join2(configDir, config.outDir, client.toLowerCase())
178467
178466
  };
178468
178467
  const program2 = ts.createProgram([filePath, clientTypesPath], compilerOptions);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcote.tech/arc-cli",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "CLI tool for Arc framework",
5
5
  "module": "index.ts",
6
6
  "main": "dist/index.js",
@@ -114,7 +114,6 @@ export async function buildDeclarations(
114
114
  const compilerOptions: ts.CompilerOptions = {
115
115
  declaration: true,
116
116
  emitDeclarationOnly: true,
117
- disableSizeLimit: true,
118
117
  outDir: join(configDir, config.outDir, client.toLowerCase()),
119
118
  };
120
119