Skip to content

Commit 2ef08a3

Browse files
committed
Unexport DEFAULT_WATCH_IGNORE to satisfy knip
knip flags the constant as an unused export since it's only consumed inside extension-instance.ts. Make it a module-local const.
1 parent f8eabc1 commit 2ef08a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/app/src/cli/models/extensions/extension-instance.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import {uniq} from '@shopify/cli-kit/common/array'
3030
* Default ignore patterns for files watched in an extension directory. Used when
3131
* the extension does not provide a custom devSessionWatchConfig.
3232
*/
33-
export const DEFAULT_WATCH_IGNORE = [
33+
const DEFAULT_WATCH_IGNORE = [
3434
'**/node_modules/**',
3535
'**/.git/**',
3636
'**/*.test.*',

0 commit comments

Comments
 (0)