gulp - How does Ionic's default gulpfile relate to its cli tool? -
currently, running app emulation using chrome browser ionic serve. see there gulpfile.js associated framework. relationship between ionic , and gulp?
have at: https://github.com/driftyco/ionic-cli#advanced-serve-options (see "gulp integrations").
you can add gulpstartuptasks property in ionic.project file located in project root.
they example above linked documentation gives is:
{ "name": "smoothriders", "gulpstartuptasks": [ "watch" ] } in case, watch gulp task executed when run $ ionic serve.
if run $ ionic setup sass, add configuration ionic.project. once understand that, you're go long understand gulp.
Comments
Post a Comment