New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gulp-cssjoin

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-cssjoin

Extend and join css @import loaded file

  • 0.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6
increased by200%
Maintainers
1
Weekly downloads
 
Created
Source

gulp-cssjoin

Join css that @import syntax loaded file for gulp. more info cssjoin

Usage

npm install gulp-cssjoin --save

Simple Usage

var gulp = require('gulp');
var cssjoin = require('gulp-cssjoin');
gulp.task('cssjoin', function(){
  // default usage
  gulp.src("./some/css_file.css")
      .pipe(cssjoin())
      .pipe(gulp.dest("./output/css"))

  // with path option
  gulp.src(src)
      .pipe(
        cssjoin({
          paths : [
            "./htdocs",
          ]
        })
      )
      .pipe(gulp.dest("./output/css"))

})

With less output

  • sample for resolve @import after compile less
gulp.task('css', function(){
  gulp.src('./less/*.less')
    .pipe(cssjoin())
    .pipe(gulp.dest('./css/'))
})

Keywords

FAQs

Package last updated on 16 Mar 2014

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc