diff --git a/.npmignore b/.npmignore index e8eb7bb..e7a108e 100644 --- a/.npmignore +++ b/.npmignore @@ -1,7 +1,6 @@ tmp test -archive _SpecRunner.html gruntfile.js .* -*.iml \ No newline at end of file +*.iml diff --git a/archive/dustjs-helpers-1.2.0.tar.gz b/archive/dustjs-helpers-1.2.0.tar.gz deleted file mode 100644 index 2f4f29c..0000000 Binary files a/archive/dustjs-helpers-1.2.0.tar.gz and /dev/null differ diff --git a/archive/dustjs-helpers-1.2.0.zip b/archive/dustjs-helpers-1.2.0.zip deleted file mode 100644 index 5dfa61f..0000000 Binary files a/archive/dustjs-helpers-1.2.0.zip and /dev/null differ diff --git a/archive/dustjs-helpers-1.3.0.tar.gz b/archive/dustjs-helpers-1.3.0.tar.gz deleted file mode 100644 index 6866460..0000000 Binary files a/archive/dustjs-helpers-1.3.0.tar.gz and /dev/null differ diff --git a/archive/dustjs-helpers-1.3.0.zip b/archive/dustjs-helpers-1.3.0.zip deleted file mode 100644 index 2f639c3..0000000 Binary files a/archive/dustjs-helpers-1.3.0.zip and /dev/null differ diff --git a/archive/dustjs-helpers-1.4.0.tar.gz b/archive/dustjs-helpers-1.4.0.tar.gz deleted file mode 100644 index 5319795..0000000 Binary files a/archive/dustjs-helpers-1.4.0.tar.gz and /dev/null differ diff --git a/archive/dustjs-helpers-1.4.0.zip b/archive/dustjs-helpers-1.4.0.zip deleted file mode 100644 index f49248d..0000000 Binary files a/archive/dustjs-helpers-1.4.0.zip and /dev/null differ diff --git a/archive/dustjs-helpers-1.5.0.tar.gz b/archive/dustjs-helpers-1.5.0.tar.gz deleted file mode 100644 index 2ee9f5e..0000000 Binary files a/archive/dustjs-helpers-1.5.0.tar.gz and /dev/null differ diff --git a/archive/dustjs-helpers-1.5.0.zip b/archive/dustjs-helpers-1.5.0.zip deleted file mode 100644 index aae0756..0000000 Binary files a/archive/dustjs-helpers-1.5.0.zip and /dev/null differ diff --git a/gruntfile.js b/gruntfile.js index bb8a7b5..df70157 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -157,44 +157,6 @@ module.exports = function (grunt) { stdout: true, failOnError: true } - }, - gitAddArchive: { - command: 'git add <%= paths.archive %>', - options: { - stdout: true - } - } - }, - compress: { - distTarBall: { - options: { - archive: '<%=paths.archive%>/<%=distName%>.tar.gz', - mode: 'tgz', - pretty: true - }, - files: [ - { - expand: true, - cwd: '<%=paths.dist%>', - src: ['*.js', 'LICENSE'], - dest: '<%=distName%>/' - } - ] - }, - distZip: { - options: { - archive: '<%=paths.archive%>/<%=distName%>.zip', - mode: 'zip', - pretty: true - }, - files: [ - { - expand: true, - cwd: '<%=paths.dist%>', - src: ['*.js', 'LICENSE'], - dest: '<%=distName%>/' - } - ] } }, bump: { @@ -248,7 +210,6 @@ module.exports = function (grunt) { grunt.loadNpmTasks('grunt-contrib-jasmine'); grunt.loadNpmTasks('grunt-contrib-connect'); grunt.loadNpmTasks('grunt-contrib-watch'); - grunt.loadNpmTasks('grunt-contrib-compress'); grunt.loadNpmTasks('grunt-bump'); grunt.loadNpmTasks('grunt-shell'); @@ -274,9 +235,9 @@ module.exports = function (grunt) { grunt.registerTask('coverage', ['jasmine:coverage', 'log:coverage']); //release tasks - grunt.registerTask('buildRelease', ['test', 'copy:release', 'compress']); - grunt.registerTask('releasePatch', ['bump-only:patch', 'buildRelease', 'shell:gitAddArchive', 'bump-commit']); - grunt.registerTask('releaseMinor', ['bump-only:minor', 'buildRelease', 'shell:gitAddArchive', 'bump-commit']); + grunt.registerTask('buildRelease', ['test', 'copy:release']); + grunt.registerTask('releasePatch', ['bump-only:patch', 'buildRelease', 'bump-commit']); + grunt.registerTask('releaseMinor', ['bump-only:minor', 'buildRelease', 'bump-commit']); //default task - full test grunt.registerTask('default', ['test']); diff --git a/package.json b/package.json index e141c84..76fbc49 100644 --- a/package.json +++ b/package.json @@ -73,7 +73,6 @@ "grunt-contrib-uglify": "~0.3.0", "grunt-contrib-copy": "~0.5.0", "grunt-contrib-clean": "~0.5.0", - "grunt-contrib-compress": "~0.6.0", "grunt-bump": "~0.0.13", "grunt-shell": "~0.6.3" },