Skip to content

Commit

Permalink
fix: remove postcss-rtlcss-extra
Browse files Browse the repository at this point in the history
chore: update dependencies
  • Loading branch information
aminmokhtari94 committed Sep 10, 2024
1 parent f897b62 commit c797c77
Show file tree
Hide file tree
Showing 11 changed files with 2,657 additions and 9,873 deletions.
3 changes: 2 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
shamefully-hoist=true
shamefully-hoist=true
strict-peer-dependencies=false
5 changes: 2 additions & 3 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,5 @@ export default createConfigForNuxt({
},
})
.append(
// your custom flat config here...
)

// your custom flat config here...
)
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,27 +41,27 @@
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"lint": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "^3.11.2",
"postcss-rtlcss-extra": "^0.0.9"
"@nuxt/kit": "^3.13.1"
},
"devDependencies": {
"@nuxt/devtools": "^1.2.0",
"@nuxt/eslint-config": "^0.3.10",
"@nuxt/module-builder": "^0.6.0",
"@nuxt/schema": "^3.11.2",
"@nuxt/test-utils": "^3.12.1",
"@types/node": "^20.12.11",
"@nuxt/devtools": "^1.4.1",
"@nuxt/eslint-config": "^0.5.5",
"@nuxt/module-builder": "^0.8.3",
"@nuxt/schema": "^3.13.1",
"@nuxt/test-utils": "^3.14.1",
"@types/node": "latest",
"changelogen": "^0.5.5",
"eslint": "^9.2.0",
"nuxt": "^3.11.2",
"eslint": "^9.9.1",
"nuxt": "^3.13.0",
"postcss-rtlcss": "^5.4.0",
"typescript": "latest",
"vitest": "^1.6.0",
"vue-tsc": "^2.0.16"
"vitest": "^2.0.5",
"vue-tsc": "^2.1.6"
}
}
}
14 changes: 11 additions & 3 deletions playground/app.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
<template>
<div>RTLCSS Nuxt module playground!</div>
<div style="border: 3px solid #222">
<div class="test">i'm auto rtl</div>
<div class="test">
i'm auto rtl
</div>
</div>
<div dir="rtl" style="border: 3px solid #222">
<div class="test">i'm auto rtl</div>
<div
dir="rtl"
style="border: 3px solid #222"
>
<div class="test">
i'm auto rtl
</div>
</div>
</template>

<script setup></script>

<style>
.test {
height: 100px;
Expand Down
5 changes: 3 additions & 2 deletions playground/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export default defineNuxtConfig({
modules: ["../src/module"],
modules: ['../src/module'],
rtlcss: {},
devtools: { enabled: true },
});
compatibilityDate: '2024-09-10',
})
4 changes: 2 additions & 2 deletions playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"build": "nuxi build",
"generate": "nuxi generate"
},
"devDependencies": {
"nuxt": "latest"
"dependencies": {
"nuxt": "^3.13.1"
}
}
Loading

0 comments on commit c797c77

Please sign in to comment.