@dword-design/base 14.0.3 → 14.0.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.
@@ -7,5 +7,6 @@ export default async function (options) {
7
7
  };
8
8
  await this.lint(options);
9
9
  await this.typecheck(options);
10
+ await this.depcheck();
10
11
  await this.test(options);
11
12
  }
package/dist/index.d.ts CHANGED
@@ -91,3 +91,4 @@ export { default as loadConfig } from './load-config';
91
91
  export { default as loadConfigSync } from './load-config-sync';
92
92
  export { Base };
93
93
  export type { Config, ConfigInput };
94
+ export { type CommandOptionsInput } from './commands/command-options-input';
package/dist/index.js CHANGED
@@ -153,7 +153,7 @@ class Base {
153
153
  allowedMatches: [],
154
154
  commands: {},
155
155
  depcheckConfig: {
156
- detectors: [depcheck.detector.importDeclaration, depcheck.detector.requireCallExpression, depcheck.detector.requireResolveCallExpression, depcheckDetectorExeca, depcheckDetectorPackageName, depcheckDetectorBinName],
156
+ detectors: [depcheck.detector.exportDeclaration, depcheck.detector.importDeclaration, depcheck.detector.requireCallExpression, depcheck.detector.requireResolveCallExpression, depcheckDetectorExeca, depcheckDetectorPackageName, depcheckDetectorBinName],
157
157
  ignorePath: ".gitignore",
158
158
  parsers: {
159
159
  "**/*.ts": depcheck.parser.typescript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dword-design/base",
3
- "version": "14.0.3",
3
+ "version": "14.0.5",
4
4
  "description": "Base package for projects.",
5
5
  "repository": "dword-design/base",
6
6
  "funding": "https://github.com/sponsors/dword-design",