Socket
Socket
Sign inDemoInstall

gulp-px2rem

Package Overview
Dependencies
22
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gulp-px2rem

A gulp plugin for node-px2rem


Version published
Weekly downloads
113
decreased by-3.42%
Maintainers
1
Install size
1.37 MB
Created
Weekly downloads
 

Readme

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

Last updated on 02 Jan 2021

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc