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

gulp-px2rem

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-px2rem

A gulp plugin for node-px2rem

  • 1.1.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

gulp-px2rem NPM version Dependency Status

Version: 1.1.4

This is a Gulp plugin for node-px2rem.

Installation

Run npm install gulp-px2rem

Usage

const px2rem = require('gulp-px2rem');

gulp.task('css', () => {
  return gulp.src('css/**/*.css')
    .pipe(px2rem())
    .pipe(gulp.dest('css'));
});

Options

Pass in two option objects. The first one for node-px2rem options, the second for postcss options.

const px2rem = require('gulp-px2rem');

const px2remOptions = {
  replace: false
};

const postCssOptions = {
  map: true
};

gulp.task('css', () => {
  return gulp.src('css/**/*.css')
    .pipe(px2rem(px2remOptions, postCssOptions))
    .pipe(gulp.dest('css'));
});

License

MIT © 2021 Gergely Kovács (gg.kovacs@gmail.com)

Keywords

FAQs

Package last updated on 02 Jan 2021

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