Skip to content

Commit f626795

Browse files
committed
fix: correctly specify postcss-rtlcss instead of postcss-rtl
1 parent 2c9d700 commit f626795

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

generator/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ module.exports = (api, opts) => {
5050
}
5151

5252
if (opts.quasar.rtlSupport) {
53-
deps.devDependencies['postcss-rtl'] = '^5.4.0'
53+
deps.devDependencies['postcss-rtlcss'] = '^5.4.0'
5454
}
5555

5656
api.extendPackage(deps)

generator/templates/rtl/_postcssrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const plugins = [
44

55
if (process.env.QUASAR_RTL) {
66
plugins.push(
7-
require('postcss-rtl')({})
7+
require('postcss-rtlcss')({})
88
)
99
}
1010

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-cli-plugin-quasar",
3-
"version": "5.1.1",
3+
"version": "5.1.2",
44
"description": "Quasar Framework v2 plugin for Vue CLI v5",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)