Skip to content

Commit 3ac3f73

Browse files
authored
Releases (csstools#14)
* ci: switch to actions * chore: upgrade versions * 4.0.0
1 parent 21ef77a commit 3ac3f73

File tree

6 files changed

+2171
-23
lines changed

6 files changed

+2171
-23
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 Environment Variables
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.0.0 (June 13, 2019)
49

510
- Updated: `postcss-values-parser` to 3.2.0 (major)

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postcss-env-function",
3-
"version": "3.0.0",
3+
"version": "4.0.0",
44
"description": "Use env() variables in CSS",
55
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
66
"license": "CC0-1.0",
@@ -23,24 +23,24 @@
2323
"prepublishOnly": "npm test"
2424
},
2525
"engines": {
26-
"node": ">=10.0.0"
26+
"node": ">=12"
2727
},
2828
"dependencies": {
29-
"postcss-values-parser": "^5.0.0"
29+
"postcss-values-parser": "6.0.0"
3030
},
3131
"peerDependencies": {
32-
"postcss": "^8.0.0"
32+
"postcss": "^8.3"
3333
},
3434
"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"
4444
},
4545
"babel": {
4646
"presets": [

0 commit comments

Comments
 (0)