knip 2.15.4 → 2.15.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.
|
@@ -6,6 +6,7 @@ export const NAME = 'husky';
|
|
|
6
6
|
export const ENABLERS = ['husky'];
|
|
7
7
|
export const isEnabled = ({ dependencies }) => hasDependency(dependencies, ENABLERS);
|
|
8
8
|
export const CONFIG_FILE_PATTERNS = [
|
|
9
|
+
'.husky/prepare-commit-msg',
|
|
9
10
|
'.husky/commit-msg',
|
|
10
11
|
'.husky/pre-{applypatch,commit,merge-commit,push,rebase,receive}',
|
|
11
12
|
'.husky/post-{checkout,commit,merge,rewrite}',
|
|
@@ -3,4 +3,7 @@ export const NAME = 'Next.js';
|
|
|
3
3
|
export const ENABLERS = ['next'];
|
|
4
4
|
export const isEnabled = ({ dependencies }) => hasDependency(dependencies, ENABLERS);
|
|
5
5
|
export const ENTRY_FILE_PATTERNS = ['next.config.{js,ts,cjs,mjs}'];
|
|
6
|
-
export const PRODUCTION_ENTRY_FILE_PATTERNS = [
|
|
6
|
+
export const PRODUCTION_ENTRY_FILE_PATTERNS = [
|
|
7
|
+
'{app,pages}/**/*.{js,jsx,ts,tsx}',
|
|
8
|
+
'src/{app,pages}/**/*.{js,jsx,ts,tsx}',
|
|
9
|
+
];
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "2.15.
|
|
1
|
+
export declare const version = "2.15.5";
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '2.15.
|
|
1
|
+
export const version = '2.15.5';
|
package/package.json
CHANGED