Skip to content
This repository was archived by the owner on Feb 18, 2022. It is now read-only.

Commit d55db1b

Browse files
authored
Release (#40)
* ci: switch to actions * chore: upgrade versions * 5.0.0
1 parent 7438fc0 commit d55db1b

File tree

6 files changed

+2142
-26
lines changed

6 files changed

+2142
-26
lines changed

.github/workflows/test.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: test
2+
on:
3+
push:
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
node: [12, 16]
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: actions/setup-node@v2
14+
with:
15+
node-version: ${{ matrix.node }}
16+
17+
- run: yarn install --ignore-scripts
18+
- run: yarn run test

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ package-lock.json
88
!.gitignore
99
!.rollup.js
1010
!.tape.js
11-
!.travis.yml
11+
!.github

.travis.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changes to PostCSS Logical Properties
22

3+
### 5.0.0 (September 17, 2021)
4+
5+
- Updated: Support for PostCS 8+ (major).
6+
- Updated: Support for Node 12+ (major).
7+
38
### 4.0.2 (June 10, 2019)
49

510
- Fixed: Restored transforms for `max-block-size`, `max-inline-size`,

package.json

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postcss-logical",
3-
"version": "4.0.2",
3+
"version": "5.0.0",
44
"description": "Use logical properties and values in CSS",
55
"author": "Jonathan Neal <[email protected]>",
66
"license": "CC0-1.0",
@@ -24,21 +24,20 @@
2424
"test:tape": "postcss-tape"
2525
},
2626
"engines": {
27-
"node": ">=10.0.0"
27+
"node": ">=12"
2828
},
2929
"peerDependencies": {
30-
"postcss": "^8.0.0"
30+
"postcss": "^8.3"
3131
},
3232
"devDependencies": {
33-
"@babel/core": "^7.13.8",
34-
"@babel/preset-env": "^7.13.9",
35-
"@rollup/plugin-babel": "^5.3.0",
36-
"babel-eslint": "^10.0.1",
37-
"eslint": "^7.21.0",
38-
"postcss": "^8.2.7",
39-
"postcss-tape": "^6.0.0",
40-
"pre-commit": "^1.2.2",
41-
"rollup": "^2.40.0"
33+
"@babel/core": "7.15.5",
34+
"@babel/preset-env": "7.15.6",
35+
"@rollup/plugin-babel": "5.3.0",
36+
"eslint": "7.32.0",
37+
"postcss": "8.3.6",
38+
"postcss-tape": "6.0.1",
39+
"pre-commit": "1.2.2",
40+
"rollup": "2.56.3"
4241
},
4342
"eslintConfig": {
4443
"env": {
@@ -47,9 +46,8 @@
4746
"node": true
4847
},
4948
"extends": "eslint:recommended",
50-
"parser": "babel-eslint",
5149
"parserOptions": {
52-
"ecmaVersion": 2018,
50+
"ecmaVersion": 2020,
5351
"impliedStrict": true,
5452
"sourceType": "module"
5553
},

0 commit comments

Comments
 (0)