Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Purgecss | 7,306 | 579 | 624 | 4 days ago | 27 | September 13, 2022 | 31 | mit | TypeScript | |
Remove unused CSS | ||||||||||
Frontend Maven Plugin | 3,917 | 54 | 7 | 4 months ago | 47 | December 29, 2021 | 305 | apache-2.0 | Java | |
"Maven-node-grunt-gulp-npm-node-plugin to end all maven-node-grunt-gulp-npm-plugins." A Maven plugin that downloads/installs Node and NPM locally, runs NPM install, Grunt, Gulp and/or Karma. | ||||||||||
Twentytwenty | 1,125 | 2 | 1 | 3 years ago | 2 | July 18, 2019 | 55 | isc | CSS | |
jQuery Plugin to Compare Images | ||||||||||
Pydio Core | 894 | 2 years ago | 82 | agpl-3.0 | PHP | |||||
Pydio 8 official repository | ||||||||||
Gradle Node Plugin | 827 | 3 years ago | 188 | apache-2.0 | Groovy | |||||
Gradle plugin for integrating NodeJS in your build. :rocket: | ||||||||||
Grunt Bump | 642 | 15,641 | 2,745 | 4 years ago | 31 | April 19, 2016 | 12 | mit | JavaScript | |
Grunt.js plugin - Increment package version. | ||||||||||
Jit Grunt | 512 | 16,920 | 727 | 5 years ago | 23 | February 23, 2016 | 11 | JavaScript | ||
JIT(Just In Time) plugin loader for Grunt. | ||||||||||
Jquery Browser Plugin | 508 | 105 | 15 | 3 years ago | 5 | November 23, 2015 | 8 | other | JavaScript | |
A jQuery plugin for browser detection | ||||||||||
Jquery Table2excel | 503 | 2 years ago | 1 | July 06, 2015 | 73 | JavaScript | ||||
jQuery Plugin to export HTML tabled to Excel Spreadsheet Compatible Files | ||||||||||
Grunt Bower Task | 501 | 5,556 | 302 | a year ago | 16 | April 27, 2022 | 61 | mit | JavaScript | |
Grunt plugin for Bower |
Minify SVG using SVGO
Issues with the output should be reported on the SVGO issue tracker.
npm install --save-dev grunt-svgmin
require('load-grunt-tasks')(grunt);
grunt.initConfig({
svgmin: {
options: {
plugins: [
{
name: 'preset-default',
params: {
overrides: {
sortAttrs: false
}
}
}
]
},
dist: {
files: {
'dist/unicorn.svg': 'app/unicorn.svg'
}
}
}
});
grunt.registerTask('default', ['svgmin']);
The provided options are passed directly to SVGO.
Per-file savings are only printed in verbose mode (grunt svgmin --verbose
).