Skip to content

Commit

Permalink
clean as part of build
Browse files Browse the repository at this point in the history
  • Loading branch information
kainino0x committed Aug 2, 2019
1 parent bb2e71f commit ef6d45f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ module.exports = function(grunt) {
registerTaskAndAddToHelp('check', 'Check types and styles', ['ts:check', 'run:gts-check']);
registerTaskAndAddToHelp('fix', 'Fix lint and formatting', ['run:gts-fix']);
registerTaskAndAddToHelp('build', 'Build out/ (without type checking)', [
'clean',
'mkdir:out',
'run:build-shaderc',
'run:build-out',
Expand All @@ -101,7 +102,7 @@ module.exports = function(grunt) {
]);
registerTaskAndAddToHelp('test', 'Run unittests', ['build', 'run:test']);
registerTaskAndAddToHelp('serve', 'Serve out/ on 127.0.0.1:8080', ['http-server:.']);
addExistingTaskToHelp('clean', 'Clean out/');
addExistingTaskToHelp('clean', 'Clean build products');

registerTaskAndAddToHelp('pre', 'Run all presubmit checks', [
'ts:check',
Expand Down

0 comments on commit ef6d45f

Please sign in to comment.