mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
Merge pull request #3289 from kshepherd/filewatcher_ignores
Ignore some paths from file watcher
This commit is contained in:
@@ -35,5 +35,12 @@ module.exports = Object.assign({}, commonExports, {
|
||||
buildAppConfig(join(process.cwd(), 'src/assets/config.json'));
|
||||
return middlewares;
|
||||
}
|
||||
}
|
||||
},
|
||||
watchOptions: {
|
||||
// Ignore directories that should not be watched for recompiling angular
|
||||
ignored: [
|
||||
'**/node_modules', '**/_build', '**/.git', '**/docker',
|
||||
'**/.angular', '**/.idea', '**/.vscode', '**/.history', '**/.vsix'
|
||||
]
|
||||
},
|
||||
});
|
||||
|
Reference in New Issue
Block a user