
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
gulp-html-postcss
Advanced tools
PostCSS gulp plugin with support for HTML and HTML-like:
$ npm install --save-dev gulp-html-postcss
Install required postcss plugins separately. E.g. for autoprefixer, you need to install autoprefixer package.
The configuration is loaded automatically from postcss.config.js
as described here,
so you don't have to specify any options.
const postcss = require('gulp-html-postcss');
const gulp = require('gulp');
gulp.task('css', () => (
gulp.src('./src/*.html')
.pipe(postcss())
.pipe(gulp.dest('./dest'))
));
You can pass config as an {Object} as described here,
If you want to configure postcss on per-file-basis, you can pass a callback
that receives ctx
with the context options and the vinyl file.
Described here,
const gulp = require('gulp');
const postcss = require('gulp-postcss');
const reporter = require('gulp-reporter');
const autoprefixer = require('autoprefixer');
const cssnano = require('cssnano');
const sugarss = require('sugarss');
gulp.task('css', () => {
const callback = (ctx) => ({
// Configure parser on per-file-basis.
parser: ctx.file.extname === '.sss' ? 'sugarss' : false,
// Plugins can be loaded in either using an {Object} or an {Array}.
plugins: [
autoprefixer,
cssnano
]
});
return gulp.src('./src/*.html', {
// Source map support
sourcemaps: true
})
.pipe(postcss(callback))
// Message repport support
.pipe(reporter())
.pipe(gulp.dest('./dest'));
});
FAQs
Process inline CSS in HTML using PostCSS gulp plugin
The npm package gulp-html-postcss receives a total of 393 weekly downloads. As such, gulp-html-postcss popularity was classified as not popular.
We found that gulp-html-postcss demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.