
Security News
Nx npm Packages Compromised in Supply Chain Attack Weaponizing AI CLI Tools
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
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 104 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
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.
Security News
A clarification on our recent research investigating 60 malicious Ruby gems.