Socket
Book a DemoInstallSign in
Socket

rtl-css-loader

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rtl-css-loader

rtl css loader module for webpack

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

(rtl) css loader for webpack

Fork of the css loader, improved for rtl.

Drop-in replacement of the css-loader, it simply checks the dir attribute on the html tag on the page, then injects either the regular css or the rtl'ized css.

Uses rtlcss under the hood.

installation

npm install rtl-css-loader --save-dev

Usage

Use it exactly like the css-loader:

module.exports = {
  module: {
    loaders: [
      {
        test: /\.css$/,
        loaders: ['style', 'rtl-css']
      },
    ]
  }
};

License

MIT

FAQs

Package last updated on 09 Jun 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