chore(): tell gulp when finished building

This commit is contained in:
Tim Lancina
2016-02-05 10:47:12 -06:00
parent 5c0fd47816
commit 3226ec7ec6
2 changed files with 3 additions and 5 deletions

View File

@ -284,8 +284,7 @@ gulp.task('sass', function() {
}); });
/** /**
* I'm not quite sure what this is for, people tell me we use it internally to * Creates Ionic themes for testing.
* test themes.
*/ */
gulp.task('sass.themes', function() { gulp.task('sass.themes', function() {
var sass = require('gulp-sass'); var sass = require('gulp-sass');
@ -776,7 +775,8 @@ gulp.task('build.release', function(done){
runSequence( runSequence(
'clean', 'clean',
'copy.libs', 'copy.libs',
['bundle', 'sass', 'fonts', 'copy.scss'] ['bundle', 'sass', 'fonts', 'copy.scss'],
done
); );
}); });

View File

@ -50,8 +50,6 @@ To remove the linked version of `ionic-framework` do `npm rm ionic-framework`, a
3. Export `IONIC_SNAPSHOT_KEY` (get from someone) 3. Export `IONIC_SNAPSHOT_KEY` (get from someone)
4. Run `gulp snapshot` 4. Run `gulp snapshot`
For more information on protractor, see https://angular.github.io/protractor/#/.
### Running Tests ### Running Tests