New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

less-plugin-base64

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

less-plugin-base64

inline images plugin

latest
Source
npmnpm
Version
1.2.3
Version published
Maintainers
1
Created
Source

less-plugin-base64

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

Install with npm

npm install less-plugin-base64 --save-dev

Example usage

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'));
});

Options

  • 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.

Keywords

less plugins

FAQs

Package last updated on 20 Feb 2017

Did you know?

Socket

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.

Install

Related posts