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

gulp-extract-css-urls

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-extract-css-urls

Imports to the pipeline all the CSS assets included with url()

latest
Source
npmnpm
Version
0.4.0
Version published
Maintainers
1
Created
Source

Gulp Extract CSS URLs

Imports to the pipeline all the CSS assets included with url().

Usage

npm install gulp-extract-css-urls --save-dev
import gulp           from 'gulp';
import extractCssUrls from 'gulp-extract-css-urls';

// This will copy main.css along with its resources loaded with url().
gulp.task('default', () => {
  return gulp.src('main.css', { cwd: 'resources/assets/css/' })
    .pipe(extractCssUrls())
    .pipe(gulp.dest('public/assets/'));
});

Keywords

gulpplugin

FAQs

Package last updated on 01 Oct 2015

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