Skip to content

Commit

Permalink
Create grunt tasks for installing client and server dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jtojnar committed Jun 9, 2017
1 parent b0a5a30 commit 2276a29
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,9 @@ module.exports = function(grunt) {
}
});

grunt.registerTask('default', ['auto_install', 'composer:install:no-dev:optimize-autoloader:prefer-dist', 'versionupdater', 'compress']);
grunt.registerTask('client:install', ['auto_install']);
grunt.registerTask('server:install', ['composer:install:no-dev:optimize-autoloader:prefer-dist']);
grunt.registerTask('default', ['client:install', 'server:install', 'versionupdater', 'compress']);
grunt.registerTask('version', ['versionupdater']);
grunt.registerTask('zip', ['compress']);
};

0 comments on commit 2276a29

Please sign in to comment.