
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
less-plugin-base64
Advanced tools
Gulp task for converting all files found within a stylesheet (those within a url( ... ) declaration) into base64-encoded data URI strings.
插件是复制 less-plugin-inline-urls 修改的, 因为我需要实现 gulp-base64 类似的效果。
Install with npm
npm install less-plugin-base64 --save-dev
var gulp = require('gulp');
var lessify = require("node-lessify");
var lessPluginInlineUrls = require('less-plugin-base64');
var guitl = require('gulp-util');
var inlineUrls = new lessPluginInlineUrls({
baseDir: 'public',
extensions: ['svg', 'png', 'gif', /\.jpg#datauri$/i],
maxImageSize: 8*1024, // bytes
debug: true
});
// example
gulp.task('build', function () {
return gulp.src('./js/*.js')
.pipe(tap(function (file) {
gutil.log('bundling ' + file.path);
var b = browserify(file.path, {
debug: true
});
b.transform(lessify, {
compileOptions: {
plugins: [inlineUrls]
}
});
file.contents = b.bundle();
}))
.pipe(gulp.dest('./public/js'));
});
baseDir (String)
If you have absolute image paths in your stylesheet, the path specified
in this option will be used as the base directory (relative to gulpfile).
deleteAfterEncoding (Boolean)
Set this to true to delete images after they've been encoded.
You'll want to do this in a staging area, and not in your source directories. Be careful.
extensions (Array of String or RegExps)
Proccess only specified extensions.
Strings are matched against file-extension only, while RegExps are tested against the raw URL value.
exclude (Array of String or RegExps)
Skip files with URLs that match these patterns.
Unlike with the extensions option Strings are sub-string matched against the whole URL value.
maxImageSize (Number)
Maximum filesize in bytes for changing image to base64.
debug (Boolean)
Enable log to console.
FAQs
inline images plugin
We found that less-plugin-base64 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.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.