Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

Commit

Permalink
fix: add missing glob
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Nov 7, 2022
1 parent f700a12 commit 9b80b35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/schema/src/config/common.ts
Expand Up @@ -338,7 +338,7 @@ export default defineUntypedSchema({
$resolve: async (val, get) => [
'**/*.stories.{js,ts,jsx,tsx}', // ignore storybook files
'**/*.{spec,test}.{js,ts,jsx,tsx}', // ignore tests
'**/.d.ts', // ignore type declarations
'**/*.d.ts', // ignore type declarations
'.output',
await get('ignorePrefix') && `**/${await get('ignorePrefix')}*.*`
].concat(val).filter(Boolean)
Expand Down

0 comments on commit 9b80b35

Please sign in to comment.