This repository was archived by the owner on Dec 21, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +2034
-24
lines changed
Expand file tree Collapse file tree 6 files changed +2034
-24
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ package-lock.json
99! .gitignore
1010! .rollup.js
1111! .tape.js
12- ! .travis.yml
12+ ! .github
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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" ,
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" : [
5857 "node" : true
5958 },
6059 "extends" : " eslint:recommended" ,
61- "parser" : " babel-eslint"
60+ "parserOptions" : {
61+ "sourceType" : " module"
62+ }
6263 },
6364 "keywords" : [
6465 " postcss" ,
You can’t perform that action at this time.
0 commit comments