From 816c1ea4489d08b53499bf39297c6f3af3bacf88 Mon Sep 17 00:00:00 2001 From: Anthony Lapenna Date: Tue, 3 Jan 2017 07:47:12 +1300 Subject: [PATCH] chore(build-system): fix release tasks --- gruntfile.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gruntfile.js b/gruntfile.js index 62354cf6e..6e86f4404 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -30,7 +30,7 @@ module.exports = function (grunt) { 'clean:tmp' ]); grunt.registerTask('release', [ - 'clean:app', + 'clean:all', 'if:unixBinaryNotExist', 'html2js', 'useminPrepare:release', @@ -45,7 +45,7 @@ module.exports = function (grunt) { 'clean:tmp' ]); grunt.registerTask('release-win', [ - 'clean:app', + 'clean:all', 'if:windowsBinaryNotExist', 'html2js', 'useminPrepare', @@ -60,7 +60,7 @@ module.exports = function (grunt) { 'clean:tmp' ]); grunt.registerTask('release-arm', [ - 'clean:app', + 'clean:all', 'if:unixArmBinaryNotExist', 'html2js', 'useminPrepare', @@ -75,7 +75,7 @@ module.exports = function (grunt) { 'clean:tmp' ]); grunt.registerTask('release-arm64', [ - 'clean:app', + 'clean:all', 'if:unixArm64BinaryNotExist', 'html2js', 'useminPrepare', @@ -90,7 +90,7 @@ module.exports = function (grunt) { 'clean:tmp' ]); grunt.registerTask('release-macos', [ - 'clean:app', + 'clean:all', 'if:darwinBinaryNotExist', 'html2js', 'useminPrepare',