webpack-rtl-plugin icon indicating copy to clipboard operation
webpack-rtl-plugin copied to clipboard

Webpack plugin to produce a rtl css bundle

Results 25 webpack-rtl-plugin issues
Sort by recently updated
recently updated
newest added

I have raised the issue [here](https://github.com/webpack-contrib/mini-css-extract-plugin/issues/280) as well thought it was the `mini-css-extract-plugin` issue but just when I commented the RTL plugin from my Webpack config the sourcemap started working...

I might be wrong, but it seems to me that the plugin minifes both files (the original and the rtlified version). Is this the desired behaviour?

I'm using this plugin with webpack-manifest-plugin, but the generated rtl files are missing in the manifest.json file, is there any way to add them automatically ? also Is there a...

When using this plugin, and during webpack's incremental build, the build hangs in the step `asset optimization` for about 2 minutes, but without using this plugin, the `asset optimization` step...

In Wepback 4 it's possible to create separate `runtime` bundle. When using `miniCssExtractPlugin` async css-chunks are loaded from this `runtime` bundle. But it's not aware of rtl-chunks that are created...

Filter chunks and process only changed.

Somewhere in between version 1.3.0 to 1.5.0 the plugin behaviour was changed and now all files created by the plugin are added to the asset list, hence, added to every...

This PR changes the behaviour of `WebpackRtlPlugin` to use `compilation.assets` for identifying css files instead of `compilation.chunks` in order to work correctly with other plugins such as `AddAssetHtmlPlugin`. Closes #16.

This plugin uses the `emit` event of the compiler. [According to the webpack docs](http://webpack.github.io/docs/plugins), at this stage "the Compiler begins with emitting the generated assets. Here plugins have the last...

By default, this plugin would add `.rtl` to the original filenames. In various use cases, it might be useful to use other suffixes, like `-rtl` for example. This change adds...