App skeleton

This commit is contained in:
Senad Uka
2018-08-05 12:55:43 +02:00
commit 52a9367d4e
72 changed files with 12652 additions and 0 deletions

22
tasks/register/build.js Normal file
View File

@@ -0,0 +1,22 @@
/**
* `tasks/register/build.js`
*
* ---------------------------------------------------------------
*
* This Grunt tasklist will be executed if you run `sails www` or
* `grunt build` in a development environment.
*
* For more information see:
* https://sailsjs.com/anatomy/tasks/register/build.js
*
*/
module.exports = function(grunt) {
grunt.registerTask('build', [
// 'polyfill:dev', //« uncomment to ALSO transpile during development (for broader browser compat.)
'compileAssets',
// 'babel', //« uncomment to ALSO transpile during development (for broader browser compat.)
'linkAssetsBuild',
'clean:build',
'copy:build'
]);
};