Skip to content

Commit

Permalink
svgo causing an error on npm install, removed it
Browse files Browse the repository at this point in the history
  • Loading branch information
johnpolacek committed Sep 15, 2013
1 parent 045c982 commit 6b03714
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
14 changes: 7 additions & 7 deletions gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,11 @@ module.exports = function(grunt) {
}
},

svgo: {
optimize: {
files: 'css/min/svg/*.svg'
}
},
// svgo: {
// optimize: {
// files: 'css/min/svg/*.svg'
// }
// },

/*sass: {
styles: {
Expand Down Expand Up @@ -175,7 +175,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-compass');

grunt.loadNpmTasks('grunt-grunticon');
grunt.loadNpmTasks('svgo-grunt');
// grunt.loadNpmTasks('svgo-grunt');


/**
Expand Down Expand Up @@ -235,5 +235,5 @@ module.exports = function(grunt) {
*
* Build icon fallbacks. Optimize SVG.
*/
grunt.registerTask('icons', ['grunticon', 'svgo']);
grunt.registerTask('icons', ['grunticon']);
};
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
"grunt-contrib-sass": "~0.3.0",
"grunt-contrib-compass": "~0.1.3",
"grunt-grunticon": "~0.2.1",
"grunt-contrib-clean": "~0.4.1",
"svgo-grunt": "0.0.3"
"grunt-contrib-clean": "~0.4.1"
}
}

0 comments on commit 6b03714

Please sign in to comment.