Skip to content

Commit

Permalink
fix: added more spces
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonnie Spratley committed Mar 3, 2016
1 parent fa9e0c7 commit 15c1ba5
Show file tree
Hide file tree
Showing 42 changed files with 393 additions and 168 deletions.
7 changes: 6 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@ const coveralls = require('gulp-coveralls');
const config = {
tsSrc: [
'src/**/*.ts',
'test/**/*.ts'
],
jsSrc: [
'!release/**/*-spec.js',
'release/**/*.js',
'release/**/*.js'
],
specs: [
//'src/**/*-spec.js',
Expand Down Expand Up @@ -97,9 +98,13 @@ gulp.task('watch-coverage', ['pre-test'], function() {
.pipe(istanbul.writeReports());
});

gulp.task('watch-compile', function() {
return gulp.watch(config.tsSrc, ['typescript']);
});
gulp.task('watch', ['watch-test'], function() {
return gulp.watch(config.tsSrc, ['typescript']);
});

gulp.task('watch-test', function() {
return gulp.watch(config.specs, ['watch-coverage']);
});
Expand Down
36 changes: 36 additions & 0 deletions release/js/app-spec.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 3 additions & 7 deletions release/js/app.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion release/js/plugins/app-plugin/index-spec.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion release/js/plugins/app-plugin/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion release/js/plugins/async-plugin/asyncModule.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 15c1ba5

Please sign in to comment.