
Product
Announcing Precomputed Reachability Analysis in Socket
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
grunt-webpcss
Advanced tools
Process css file to generate addition css ruless to add webp compatble"
Gulp analog: gulp-webpcss
PostCSS filter: webpcss
Process css file to generate addition css ruless to add webp compatble
This plugin requires Grunt ~0.4.4
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-webpcss --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-webpcss');
In your project's Gruntfile, add a section named webpcss
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
webpcss: {
task: {
options: {
baseClass:'.webp',
replace_from:/\.(png|jpg|jpeg)/,
replace_to:'.webp'
},
files: {
'main.css':['main.css']
}
}
},
});
check options in webpcss module
In this example, the default options are used to do something with whatever. Css transforms from
.test { background-image:url('test.png'); }
to
.test { background-image:url('test.png'); }
.webp .test { background-image:url('test.webp'); }
grunt.initConfig({
webpcss: {
task: {
options: {},
files: {
'dest/default_options.css': ['default_options.css'],
},
}
},
});
In this example, the default options are used to do something with whatever. Css transforms from
.test { background-image:url('test.png'); }
to
.test { background-image:url('test.png'); }
.webp1 .test { background-image:url('test.webp'); }
grunt.initConfig({
webpcss: {
options: {
baseClass:'.webp1',
replace_from:/\.(png|jpg|jpeg)/,
replace_to:'.webp',
},
files: {
'dest/default_options.css': ['default_options.css'],
},
},
});
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
0.1.0 - Plugin release
FAQs
Process css file to generate addition css ruless to add webp compatble"
We found that grunt-webpcss demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.
Product
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.