App skeleton
This commit is contained in:
27
tasks/register/default.js
Normal file
27
tasks/register/default.js
Normal file
@@ -0,0 +1,27 @@
|
||||
/**
|
||||
* `tasks/register/default.js`
|
||||
*
|
||||
* ---------------------------------------------------------------
|
||||
*
|
||||
* This is the default Grunt tasklist that will be executed if you
|
||||
* run `grunt` in the top level directory of your app. It is also
|
||||
* called automatically when you start Sails in development mode using
|
||||
* `sails lift` or `node app` in a development environment.
|
||||
*
|
||||
* For more information see:
|
||||
* https://sailsjs.com/anatomy/tasks/register/default.js
|
||||
*
|
||||
*/
|
||||
module.exports = function (grunt) {
|
||||
|
||||
|
||||
grunt.registerTask('default', [
|
||||
// 'polyfill:dev', //« uncomment to ALSO transpile during development (for broader browser compat.)
|
||||
'compileAssets',
|
||||
// 'babel', //« uncomment to ALSO transpile during development (for broader browser compat.)
|
||||
'linkAssets',
|
||||
'watch'
|
||||
]);
|
||||
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user