File tree Expand file tree Collapse file tree 6 files changed +2171
-23
lines changed Expand file tree Collapse file tree 6 files changed +2171
-23
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
9
9
! .gitignore
10
10
! .rollup.js
11
11
! .tape.js
12
- ! .travis.yml
12
+ ! .github
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# Changes to PostCSS Environment Variables
2
2
3
+ ### 4.0.0 (September 17, 2021)
4
+
5
+ - Updated: Support for PostCS 8+ (major).
6
+ - Updated: Support for Node 12+ (major).
7
+
3
8
### 3.0.0 (June 13, 2019)
4
9
5
10
- Updated: ` postcss-values-parser ` to 3.2.0 (major)
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " postcss-env-function" ,
3
- "version" : " 3 .0.0" ,
3
+ "version" : " 4 .0.0" ,
4
4
"description" : " Use env() variables in CSS" ,
5
5
"author" : " Jonathan Neal <jonathantneal@hotmail.com>" ,
6
6
"license" : " CC0-1.0" ,
23
23
"prepublishOnly" : " npm test"
24
24
},
25
25
"engines" : {
26
- "node" : " >=10.0.0 "
26
+ "node" : " >=12 "
27
27
},
28
28
"dependencies" : {
29
- "postcss-values-parser" : " ^5 .0.0"
29
+ "postcss-values-parser" : " 6 .0.0"
30
30
},
31
31
"peerDependencies" : {
32
- "postcss" : " ^8.0.0 "
32
+ "postcss" : " ^8.3 "
33
33
},
34
34
"devDependencies" : {
35
- "@babel/core" : " ^7.13.10 " ,
36
- "@babel/preset-env " : " ^7.13.10 " ,
37
- "@babel/eslint-parser " : " ^7.13.10 " ,
38
- "eslint " : " ^7.22 .0" ,
39
- "postcss " : " ^8.2.8 " ,
40
- "postcss-tape " : " ^6.0.0 " ,
41
- "pre-commit " : " ^1.2.2 " ,
42
- "rollup " : " ^2.41 .2" ,
43
- "@ rollup/plugin-babel " : " ^5.3.0 "
35
+ "@babel/core" : " 7.15.5 " ,
36
+ "@babel/eslint-parser " : " 7.15.4 " ,
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
+ "pre-commit " : " 1.2 .2" ,
43
+ "rollup" : " 2.56.3 "
44
44
},
45
45
"babel" : {
46
46
"presets" : [
You can’t perform that action at this time.
0 commit comments