Package Exports
- gulp-rtlcss
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-rtlcss) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gulp-multimarkdown
Gulp plugin that uses RTLCSS to convert LTR CSS to RTL.
Install
$ npm install --save-dev gulp-rtlcss
Usage
var gulp = require('gulp');
var rtlcss = require('gulp-rtlcss');
gulp.task('default', function () {
return gulp.src('styles.css')
.pipe(rtlcss())
.pipe(gulp.dest('dist'));
});