Skip to content
This repository was archived by the owner on Dec 21, 2021. It is now read-only.

Commit 58e4792

Browse files
authored
Release (#9)
* ci: switch to actions * chore: upgrade versions * 4.0.0
1 parent 7af4c23 commit 58e4792

File tree

6 files changed

+2034
-24
lines changed

6 files changed

+2034
-24
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
@@ -9,4 +9,4 @@ package-lock.json
99
!.gitignore
1010
!.rollup.js
1111
!.tape.js
12-
!.travis.yml
12+
!.github

.travis.yml

Lines changed: 0 additions & 9 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 Lab Function
22

3+
### 4.0.0 (September 17, 2021)
4+
5+
- Updated: Support for PostCS 8+ (major).
6+
- Updated: Support for Node 12+ (major).
7+
38
### 3.1.2 (April 25, 2020)
49

510
- Updated: Publish

package.json

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postcss-lab-function",
3-
"version": "3.1.2",
3+
"version": "4.0.0",
44
"description": "Use lab() and lch() color functions in CSS",
55
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
66
"license": "CC0-1.0",
@@ -23,24 +23,23 @@
2323
"prepublishOnly": "npm test"
2424
},
2525
"engines": {
26-
"node": ">=10.0.0"
26+
"node": ">=12"
2727
},
2828
"dependencies": {
29-
"@csstools/convert-colors": "^2.0.0",
30-
"postcss-values-parser": "^4.0.0"
29+
"@csstools/convert-colors": "2.0.0",
30+
"postcss-values-parser": "6.0.0"
3131
},
3232
"peerDependencies": {
33-
"postcss": "^8.0.0"
33+
"postcss": "^8.3"
3434
},
3535
"devDependencies": {
36-
"@babel/core": "^7.11.6",
37-
"@babel/preset-env": "^7.11.5",
38-
"@rollup/plugin-babel": "^5.2.1",
39-
"babel-eslint": "^10.1.0",
40-
"eslint": "^7.10.0",
41-
"postcss": "^8.1.0",
42-
"postcss-tape": "^6.0.0",
43-
"rollup": "^2.28.2"
36+
"@babel/core": "7.15.5",
37+
"@babel/preset-env": "7.15.6",
38+
"@rollup/plugin-babel": "5.3.0",
39+
"eslint": "7.32.0",
40+
"postcss": "8.3.6",
41+
"postcss-tape": "6.0.1",
42+
"rollup": "2.56.3"
4443
},
4544
"babel": {
4645
"presets": [
@@ -58,7 +57,9 @@
5857
"node": true
5958
},
6059
"extends": "eslint:recommended",
61-
"parser": "babel-eslint"
60+
"parserOptions": {
61+
"sourceType": "module"
62+
}
6263
},
6364
"keywords": [
6465
"postcss",

0 commit comments

Comments
 (0)