Socket
Socket
Sign inDemoInstall

gulp-postcss-rtlcss

Package Overview
Dependencies
19
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gulp-postcss-rtlcss

Gulp plugin that uses POSTCSS-RTLCSS to convert LTR CSS to RTL.


Version published
Weekly downloads
1
decreased by-66.67%
Maintainers
1
Created
Weekly downloads
 

Changelog

Source

[1.0.0] - 2023-08-01

  • 🚀 Initial release

Readme

Source

gulp-postcss-rtlcss

MIT Licence NPM Version Build Status Dependency Status Language grade: JavaScript

Gulp plugin that uses postcss-rtlcss to convert LTR CSS to RTL.

Install

$ npm install --save-dev gulp-postcss-rtlcss

Basic Usage

var gulp = require('gulp');
var rtlcss = require('gulp-postcss-rtlcss');

gulp.task('default', function () {
	return gulp.src('styles.css')
		.pipe(rtlcss())
		.pipe(gulp.dest('dist'));
});

Configuration

The plugin optionally accepts POSTCSS-RTLCSS configuration either as an argument.

See the POSTCSS-RTLCSS documentation for more information about accepted configuration.

Change Log

See CHANGELOG.md.

Keywords

FAQs

Last updated on 01 Aug 2023

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