From 834695e241df252e9c4cb90b2970ad7defa134a4 Mon Sep 17 00:00:00 2001 From: kpdecker Date: Thu, 24 Dec 2015 09:44:09 -0600 Subject: [PATCH] Remove cdnjs copy task --- Gruntfile.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 005d1753..266b0c3a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -30,11 +30,6 @@ module.exports = function(grunt) { {expand: true, cwd: 'dist/', src: ['*.js'], dest: 'dist/'} ] }, - cdnjs: { - files: [ - {expand: true, cwd: 'dist/', src: ['*.js'], dest: 'dist/cdnjs'} - ] - }, components: { files: [ {expand: true, cwd: 'components/', src: ['**'], dest: 'dist/components'}, @@ -179,7 +174,7 @@ module.exports = function(grunt) { this.registerTask('globals', ['webpack']); this.registerTask('tests', ['concat:tests']); - this.registerTask('release', 'Build final packages', ['eslint', 'uglify', 'test:min', 'copy:dist', 'copy:components', 'copy:cdnjs']); + this.registerTask('release', 'Build final packages', ['eslint', 'uglify', 'test:min', 'copy:dist', 'copy:components']); // Load tasks from npm grunt.loadNpmTasks('grunt-contrib-clean');