commandkit 1.0.0-dev.20250502181304 → 1.0.0-dev.20250511034609

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.d.ts CHANGED
@@ -1911,7 +1911,7 @@ interface CommandKitConfig {
1911
1911
  /**
1912
1912
  * Whether to ignore type checking during builds.
1913
1913
  */
1914
- ignoreDuringBuilds?: boolean;
1914
+ ignoreBuildErrors?: boolean;
1915
1915
  };
1916
1916
  /**
1917
1917
  * Whether to generate static command handler data in production builds.
package/dist/index.js CHANGED
@@ -2885,7 +2885,7 @@ var init_default = __esm({
2885
2885
  },
2886
2886
  static: true,
2887
2887
  typescript: {
2888
- ignoreDuringBuilds: false
2888
+ ignoreBuildErrors: false
2889
2889
  },
2890
2890
  distDir: "dist",
2891
2891
  env: {},
@@ -5664,7 +5664,7 @@ var init_version = __esm({
5664
5664
  "use strict";
5665
5665
  init_cjs_shims();
5666
5666
  version = /* @__MACRO__ $version */
5667
- "1.0.0-dev.20250502181304";
5667
+ "1.0.0-dev.20250511034609";
5668
5668
  }
5669
5669
  });
5670
5670
 
@@ -5864,7 +5864,7 @@ async function buildApplication({
5864
5864
  }) {
5865
5865
  var _a;
5866
5866
  const config = await loadConfigFile(configPath);
5867
- if (!isDev && !((_a = config == null ? void 0 : config.typescript) == null ? void 0 : _a.ignoreDuringBuilds)) {
5867
+ if (!isDev && !((_a = config == null ? void 0 : config.typescript) == null ? void 0 : _a.ignoreBuildErrors)) {
5868
5868
  await performTypeCheck(configPath || process.cwd());
5869
5869
  }
5870
5870
  const pluginRuntime = new CompilerPluginRuntime(plugins || []);