Skip to content

Commit

Permalink
fix(watch): remove dist from ignore (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
privatenumber committed Nov 12, 2022
1 parent eb0bcc8 commit eae2663
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions src/watch/index.ts
Expand Up @@ -146,9 +146,6 @@ export const watchCommand = command({
// 3rd party packages
'**/{node_modules,bower_components,vendor}/**',

// Distribution files
'**/dist/**',

...options.ignore,
],
ignorePermissionErrors: true,
Expand Down
2 changes: 1 addition & 1 deletion tests/specs/watch.ts
Expand Up @@ -194,7 +194,7 @@ export default testSuite(async ({ describe }, fixturePath: string) => {

expect(tsxProcessResolved.stdout).not.toMatch(`${value} ${value}`);
expect(tsxProcessResolved.stderr).toBe('');
}, 5000);
}, 10_000);
});
});
});

0 comments on commit eae2663

Please sign in to comment.