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

gulp-steel-css-fix

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-steel-css-fix

a css fix package for Steel

  • 0.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

#gulp-steel-css-fix

Use to fix css rules

###Usage

use glob pattern to filter your file path;

the filter could also be Array or String, like:

{filter:["pages/*.*"]} 
{filter:"lib/*.*"}

In your steel-gulpfile, you can use in this way:

var gscf = require('gulp-steel-css-fix');

gscf({ 
    prefix: true,//bool
    filter:["lib/*.*","pages/*.*"]//Array or String 
})

###Example If your file path is "src/css/pages/pageA.css", the filter(sub-path) pattern should be "pages/.", like:

function testCss(){
 	gulp.src(['src/css/**/*.*'])
        .pipe($.steelCssfix({
             prefix: true, 
             filter:["pages/pointsmall/*.*"] 
        }))
	.pipe(gulp.dest(front_base + '/css/'));
}

in the function testCss, the whole file path is "src/css/pages/pointsmall/."

Keywords

FAQs

Package last updated on 29 Feb 2016

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