chore: retire Grunt build task

This commit is contained in:
hacksalot 2018-02-14 12:33:38 -05:00
parent 1c03b579b6
commit c7a271a794
No known key found for this signature in database
GPG Key ID: 2F343EC247CA4B06
1 changed files with 2 additions and 9 deletions

View File

@ -35,18 +35,11 @@ module.exports = function (grunt) {
// Use 'grunt test' for local testing
grunt.registerTask('test', 'Test the HackMyResume application.',
function() {
grunt.task.run(['clean:test','build','eslint','simplemocha:all']);
grunt.task.run(['clean:test','eslint','simplemocha:all']);
}
);
// Use 'grunt build' to build HMR
grunt.registerTask('build', 'Build the HackMyResume application.',
function() {
grunt.task.run( ['eslint'] );
}
);
// Default task does everything
// Default task - nothing to do but test
grunt.registerTask('default', [ 'test' ]);
};