-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
64 changed files
with
418 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,61 @@ | ||
|
||
|
||
var gulp = require('gulp'), | ||
gulpWatch = require('gulp-watch'), | ||
del = require('del'), | ||
runSequence = require('run-sequence'), | ||
argv = process.argv; | ||
|
||
|
||
/** | ||
* Ionic hooks | ||
* Add ':before' or ':after' to any Ionic project command name to run the specified | ||
* tasks before or after the command. | ||
*/ | ||
gulp.task('serve:before', ['watch']); | ||
gulp.task('emulate:before', ['build']); | ||
gulp.task('deploy:before', ['build']); | ||
gulp.task('build:before', ['build']); | ||
|
||
// we want to 'watch' when livereloading | ||
var shouldWatch = argv.indexOf('-l') > -1 || argv.indexOf('--livereload') > -1; | ||
gulp.task('run:before', [shouldWatch ? 'watch' : 'build']); | ||
|
||
/** | ||
* Ionic Gulp tasks, for more information on each see | ||
* https://github.com/driftyco/ionic-gulp-tasks | ||
* | ||
* Using these will allow you to stay up to date if the default Ionic 2 build | ||
* changes, but you are of course welcome (and encouraged) to customize your | ||
* build however you see fit. | ||
*/ | ||
var buildWebpack = require('ionic-gulp-webpack-build'); | ||
var buildBrowserify = require('ionic-gulp-browserify-typescript'); | ||
var buildSass = require('ionic-gulp-sass-build'); | ||
var copyHTML = require('ionic-gulp-html-copy'); | ||
var copyFonts = require('ionic-gulp-fonts-copy'); | ||
var copyScripts = require('ionic-gulp-scripts-copy'); | ||
|
||
gulp.task('watch', ['sass', 'html', 'fonts'], function(){ | ||
gulpWatch('app/**/*.scss', function(){ gulp.start('sass'); }); | ||
gulpWatch('app/**/*.html', function(){ gulp.start('html'); }); | ||
return buildWebpack({ watch: true }); | ||
gulp.task('watch', ['clean'], function(done){ | ||
runSequence( | ||
['sass', 'html', 'fonts', 'scripts'], | ||
function(){ | ||
gulpWatch('app/**/*.scss', function(){ gulp.start('sass'); }); | ||
gulpWatch('app/**/*.html', function(){ gulp.start('html'); }); | ||
buildBrowserify({ watch: true }).on('end', done); | ||
} | ||
); | ||
}); | ||
|
||
gulp.task('build', ['clean'], function(done){ | ||
runSequence( | ||
['sass', 'html', 'fonts', 'scripts'], | ||
function(){ | ||
buildBrowserify().on('end', done); | ||
} | ||
); | ||
}); | ||
gulp.task('build', ['sass', 'html', 'fonts'], buildWebpack); | ||
gulp.task('sass', buildSass); | ||
gulp.task('html', copyHTML); | ||
gulp.task('fonts', copyFonts); | ||
gulp.task('clean', function(done){ | ||
del('www/build', done); | ||
gulp.task('scripts', copyScripts); | ||
gulp.task('clean', function(){ | ||
return del('www/build'); | ||
}); | ||
|
||
/** | ||
* Ionic hooks | ||
* Add ':before' or ':after' to any Ionic project command name to run the specified | ||
* tasks before or after the command. | ||
*/ | ||
gulp.task('serve:before', ['watch']); | ||
gulp.task('emulate:before', ['build']); | ||
gulp.task('deploy:before', ['build']); | ||
|
||
// we want to 'watch' when livereloading | ||
var shouldWatch = argv.indexOf('-l') > -1 || argv.indexOf('--livereload') > -1; | ||
gulp.task('run:before', [shouldWatch ? 'watch' : 'build']); |
Oops, something went wrong.