Skip to content

Commit

Permalink
[dependencies-update] - version update
Browse files Browse the repository at this point in the history
  • Loading branch information
bab2683 committed Nov 23, 2022
1 parent 5cf1363 commit 3c36d3f
Show file tree
Hide file tree
Showing 5 changed files with 63 additions and 41 deletions.
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
language: node_js

node_js:
- "11"
- "10"
- "9"
- "8"
- "16"
- "15"
- "14"

cache:
directories:
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## [2.0.0] - 2022-11-23
- Aligned with postcss plugin API
- Updated dependecies
- Added support for aliases
### Breaking changes:
- Updated postcss to version 8
- Stopped support for node versions below 14

## [1.7.0] - 2020-02-19
- Supported `blacklist` and `whitelist` options

Expand Down
15 changes: 0 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,5 @@
# PostCSS-RTL

---

## ⚠️ Unmaintained ⚠️

The project is no longer maintained by the author.

It still may be helpful for MVP or small projects but for large projects it will be better
to choose [`rtl.css`](https://github.com/MohammadYounes/rtlcss) (which this plugins uses under the hood) directly.

If you want to take care of this repo/npm package, you can contact author:
- telegram: https://t.me/vkalinichev
- mail: [email protected]
- or [create issue](https://github.com/vkalinichev/postcss-rtl/issues/new) in this repo

---
[![npm][npm-img]][npm]
[![Build Status][ci-img]][ci]
[![npm][npm-dwnlds-img]][npm]
Expand Down
62 changes: 45 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 7 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postcss-rtl",
"version": "1.7.3",
"version": "2.0.0",
"description": "PostCSS plugin for RTL-optimizations",
"keywords": [
"postcss",
Expand All @@ -25,8 +25,6 @@
"lib"
],
"dependencies": {
"postcss": "^8.4.19",
"postcss-import": "^12.0.1",
"rtlcss": "4.0.0"
},
"devDependencies": {
Expand All @@ -36,7 +34,11 @@
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^29.3.1"
"jest": "^29.3.1",
"postcss-import": "^12.0.1"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"scripts": {
"build": "babel ./src --out-dir ./lib --ignore '**/__tests__/*'",
Expand All @@ -46,6 +48,6 @@
"test": "jest"
},
"engines": {
"node": "^14.0.0"
"node": ">=14.0.0"
}
}

0 comments on commit 3c36d3f

Please sign in to comment.