knip 5.27.1 → 5.27.2
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/WorkspaceWorker.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -34,7 +34,7 @@ export declare class WorkspaceWorker {
|
|
|
34
34
|
isStrict: boolean;
|
|
35
35
|
rootIgnore: Configuration['ignore'];
|
|
36
36
|
negatedWorkspacePatterns: string[];
|
|
37
|
-
enabledPluginsMap: Record<"
|
|
37
|
+
enabledPluginsMap: Record<"angular" | "astro" | "ava" | "babel" | "capacitor" | "changesets" | "commitizen" | "commitlint" | "cspell" | "cucumber" | "cypress" | "drizzle" | "eleventy" | "eslint" | "gatsby" | "githubActions" | "graphqlCodegen" | "husky" | "jest" | "ladle" | "lefthook" | "linthtml" | "lintStaged" | "lockfileLint" | "lostPixel" | "markdownlint" | "mocha" | "moonrepo" | "msw" | "netlify" | "next" | "nodeTestRunner" | "npmPackageJsonLint" | "nx" | "nyc" | "oclif" | "playwright" | "playwrightCt" | "postcss" | "prettier" | "reactCosmos" | "releaseIt" | "remark" | "remix" | "rollup" | "rsbuild" | "rspack" | "semanticRelease" | "sentry" | "simpleGitHooks" | "sizeLimit" | "storybook" | "stryker" | "stylelint" | "svelte" | "syncpack" | "tailwind" | "tsup" | "typedoc" | "typescript" | "unbuild" | "unocss" | "vercelOg" | "vite" | "vitest" | "vue" | "webdriverIo" | "webpack" | "wireit" | "wrangler" | "xo" | "yorkie", boolean>;
|
|
38
38
|
enabledPlugins: PluginName[];
|
|
39
39
|
enabledPluginsInAncestors: string[];
|
|
40
40
|
cache: CacheConsultant<CacheItem>;
|
|
@@ -54,7 +54,7 @@ export declare class WorkspaceWorker {
|
|
|
54
54
|
entryFilePatterns: Set<string>;
|
|
55
55
|
productionEntryFilePatterns: Set<string>;
|
|
56
56
|
referencedDependencies: ReferencedDependencies;
|
|
57
|
-
enabledPlugins: ("
|
|
57
|
+
enabledPlugins: ("angular" | "astro" | "ava" | "babel" | "capacitor" | "changesets" | "commitizen" | "commitlint" | "cspell" | "cucumber" | "cypress" | "drizzle" | "eleventy" | "eslint" | "gatsby" | "githubActions" | "graphqlCodegen" | "husky" | "jest" | "ladle" | "lefthook" | "linthtml" | "lintStaged" | "lockfileLint" | "lostPixel" | "markdownlint" | "mocha" | "moonrepo" | "msw" | "netlify" | "next" | "nodeTestRunner" | "npmPackageJsonLint" | "nx" | "nyc" | "oclif" | "playwright" | "playwrightCt" | "postcss" | "prettier" | "reactCosmos" | "releaseIt" | "remark" | "remix" | "rollup" | "rsbuild" | "rspack" | "semanticRelease" | "sentry" | "simpleGitHooks" | "sizeLimit" | "storybook" | "stryker" | "stylelint" | "svelte" | "syncpack" | "tailwind" | "tsup" | "typedoc" | "typescript" | "unbuild" | "unocss" | "vercelOg" | "vite" | "vitest" | "vue" | "webdriverIo" | "webpack" | "wireit" | "wrangler" | "xo" | "yorkie")[];
|
|
58
58
|
}>;
|
|
59
59
|
onDispose(): void;
|
|
60
60
|
}
|
package/dist/index.js
CHANGED
|
@@ -126,7 +126,7 @@ export const main = async (unresolvedConfiguration) => {
|
|
|
126
126
|
const negatedEntryPatterns = Array.from(entryFilePatterns).map(negate);
|
|
127
127
|
{
|
|
128
128
|
const patterns = worker.getProductionEntryFilePatterns(negatedEntryPatterns);
|
|
129
|
-
const workspaceEntryPaths = await _glob({ ...sharedGlobOptions, patterns });
|
|
129
|
+
const workspaceEntryPaths = await _glob({ ...sharedGlobOptions, patterns, gitignore: false });
|
|
130
130
|
debugLogArray(name, 'Entry paths', workspaceEntryPaths);
|
|
131
131
|
principal.addEntryPaths(workspaceEntryPaths);
|
|
132
132
|
}
|
|
@@ -147,7 +147,7 @@ export const main = async (unresolvedConfiguration) => {
|
|
|
147
147
|
else {
|
|
148
148
|
{
|
|
149
149
|
const patterns = worker.getEntryFilePatterns();
|
|
150
|
-
const workspaceEntryPaths = await _glob({ ...sharedGlobOptions, patterns });
|
|
150
|
+
const workspaceEntryPaths = await _glob({ ...sharedGlobOptions, patterns, gitignore: false });
|
|
151
151
|
debugLogArray(name, 'Entry paths', workspaceEntryPaths);
|
|
152
152
|
principal.addEntryPaths(workspaceEntryPaths);
|
|
153
153
|
}
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "5.27.
|
|
1
|
+
export declare const version = "5.27.2";
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '5.27.
|
|
1
|
+
export const version = '5.27.2';
|