Skip to content
This repository has been archived by the owner on Jun 8, 2021. It is now read-only.

Commit

Permalink
fix(serve): fix glob pattern for ignore dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Aug 3, 2017
1 parent e2ed276 commit 4860502
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/Commands/Serve/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,20 +67,20 @@ class Serve extends Command {
max: 1,
silent: false,
watch: dev,
watchIgnoreDotFiles: true,
watchIgnorePatterns: [
'*.edge',
'*.md',
'*.adoc',
'*.asciidoc',
'resources',
'database',
'public',
'**/resources/**',
'**/database/**',
'**/public/**',
'**/test/**',
'**/tmp/**',
'**/node_modules/**',
'package.json',
'package-lock.json',
'.gitignore',
'test',
'.editorconfig',
'node_modules'
'package-lock.json'
],
watchDirectory: process.cwd()
})
Expand Down

0 comments on commit 4860502

Please sign in to comment.