Skip to content

Commit

Permalink
fix(core): remove e2e specs from injects and watch
Browse files Browse the repository at this point in the history
  • Loading branch information
balthazar committed Mar 6, 2015
1 parent 4da82b9 commit f70b5d8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/templates/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ var toInject = [
'client/directives/**/*.js', '!client/directives/**/*.spec.js',
'client/filters/**/*.js', '!client/filters/**/*.spec.js',
'client/services/**/*.js', '!client/services/**/*.spec.js',
'client/views/**/*.js', '!client/views/**/*.spec.js',
'client/views/**/*.js', '!client/views/**/*.spec.js', '!client/views/**/*.e2e.js',
'client/styles/css/app.css'
];

Expand Down Expand Up @@ -108,6 +108,7 @@ gulp.task('watch', ['inject'], function () {
'client/views/**/*.js',
'!client/views/**/*.scss',
'!client/views/**/*.spec.js',
'!client/views/**/*.e2e.js',
'client/directives',
'client/directives/**/*.html',
'client/directives/**/*.js',
Expand Down

0 comments on commit f70b5d8

Please sign in to comment.