From cc4444bdf7d7b7ba593a6140ffeaee9a2443b79a Mon Sep 17 00:00:00 2001 From: Nathan Bubna Date: Wed, 14 Feb 2024 16:07:17 -0800 Subject: [PATCH] remove component --- Gruntfile.js | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 413a294..35125ec 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -83,14 +83,6 @@ module.exports = function(grunt) { tasks: ['jshint:test', 'qunit'] } }, - component_build: { - app: { - output: './dist/', - styles: false, - scripts: true, - standalone: true - } - }, nugetpack: { dist: { src: 'store2.nuspec', @@ -111,7 +103,7 @@ module.exports = function(grunt) { grunt.loadTasks('tasks'); // Default task. - grunt.registerTask('default', ['jshint', 'clean', 'concat', 'component_build', 'qunit', 'uglify']); + grunt.registerTask('default', ['jshint', 'clean', 'concat', 'qunit', 'uglify']); grunt.registerTask('nuget', ['nugetpack', 'nugetpush']); };