Skip to content

Commit

Permalink
fix: correctly specify postcss-rtlcss instead of postcss-rtl
Browse files Browse the repository at this point in the history
  • Loading branch information
rstoenescu committed Sep 17, 2024
1 parent 2c9d700 commit f626795
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion generator/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ module.exports = (api, opts) => {
}

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

api.extendPackage(deps)
Expand Down
2 changes: 1 addition & 1 deletion generator/templates/rtl/_postcssrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const plugins = [

if (process.env.QUASAR_RTL) {
plugins.push(
require('postcss-rtl')({})
require('postcss-rtlcss')({})
)
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-cli-plugin-quasar",
"version": "5.1.1",
"version": "5.1.2",
"description": "Quasar Framework v2 plugin for Vue CLI v5",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit f626795

Please sign in to comment.