Transition stuff

This commit is contained in:
Max Lynch
2015-03-18 12:44:53 -05:00
parent 1a07726dc4
commit cb7aa9e27d
6 changed files with 76 additions and 3 deletions

View File

@ -17,6 +17,7 @@ var config = {
src: {
js: ['src/**/*.js', '!src/**/*.spec.js'],
html: 'src/**/*.html',
scss: 'src/**/*.scss',
playgroundJs: 'playground/**/*.js',
playgroundFiles: ['playground/**/*', '!playground/**/*.js'],
},
@ -29,7 +30,7 @@ var config = {
]
};
gulp.task('default', ['js', 'html', 'libs', 'playgroundJs', 'playgroundFiles']);
gulp.task('default', ['js', 'html', 'sass', 'libs', 'playgroundJs', 'playgroundFiles']);
gulp.task('watch', ['default'], function () {
var http = require('http');
@ -40,6 +41,7 @@ gulp.task('watch', ['default'], function () {
gulp.watch(config.src.html, ['html']);
gulp.watch(config.src.js, ['js']);
gulp.watch(config.src.sass, ['sass']);
gulp.watch(config.src.playgroundJs, ['playgroundJs']);
gulp.watch(config.src.playgroundFiles, ['playgroundFiles']);