@dword-design/base 15.0.3 → 15.1.0

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.
@@ -8,6 +8,7 @@ export default async function (options = {}) {
8
8
  stderr: "inherit",
9
9
  ...options
10
10
  };
11
+ await this.config.typecheck.call(this, options);
11
12
  const {
12
13
  config
13
14
  } = ts.readConfigFile(pathLib.join(this.cwd, "tsconfig.json"), ts.sys.readFile);
package/dist/index.d.ts CHANGED
@@ -28,6 +28,7 @@ type Config = {
28
28
  gitignore: string[];
29
29
  hasTypescriptConfigRootAlias: boolean;
30
30
  lint: (options?: PartialCommandOptions) => unknown;
31
+ typecheck: (options?: PartialCommandOptions) => unknown;
31
32
  macos: boolean;
32
33
  minNodeVersion: number;
33
34
  nodeVersion: number;
package/dist/index.js CHANGED
@@ -201,6 +201,7 @@ class Base {
201
201
  supportedNodeVersions: [20, 22],
202
202
  syncKeywords: true,
203
203
  testInContainer: false,
204
+ typecheck: () => {},
204
205
  typescriptConfig: {},
205
206
  useJobMatrix: true,
206
207
  windows: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dword-design/base",
3
- "version": "15.0.3",
3
+ "version": "15.1.0",
4
4
  "description": "Base package for projects.",
5
5
  "repository": "dword-design/base",
6
6
  "funding": "https://github.com/sponsors/dword-design",