Skip to content
Snippets Groups Projects
Commit e6d7cd5c authored by Tom Robinson's avatar Tom Robinson
Browse files

Add bower_components exclusion back in for now

parent b4dc014e
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ var glob = require('glob');
var BASE_PATH = __dirname + '/resources/frontend_client/app/';
// All JS files except dist and test
var JS_SRC = glob.sync(BASE_PATH + '**/*.js', { ignore: BASE_PATH + '{dist,test}/**/*.js' });
var JS_SRC = glob.sync(BASE_PATH + '**/*.js', { ignore: BASE_PATH + '{bower_components,dist,test}/**/*.js' });
// All CSS files in app/css and app/components
var CSS_SRC = glob.sync(BASE_PATH + 'css/**/*.css').concat(glob.sync(BASE_PATH + 'components/**/*.css'));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment