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

Releases #14

Merged
merged 3 commits into from
Sep 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: test
on:
push:

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [12, 16]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}

- run: yarn install --ignore-scripts
- run: yarn run test
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ package-lock.json
!.gitignore
!.rollup.js
!.tape.js
!.travis.yml
!.github
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changes to PostCSS Environment Variables

### 4.0.0 (September 17, 2021)

- Updated: Support for PostCS 8+ (major).
- Updated: Support for Node 12+ (major).

### 3.0.0 (June 13, 2019)

- Updated: `postcss-values-parser` to 3.2.0 (major)
Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postcss-env-function",
"version": "3.0.0",
"version": "4.0.0",
"description": "Use env() variables in CSS",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"license": "CC0-1.0",
Expand All @@ -23,24 +23,24 @@
"prepublishOnly": "npm test"
},
"engines": {
"node": ">=10.0.0"
"node": ">=12"
},
"dependencies": {
"postcss-values-parser": "^5.0.0"
"postcss-values-parser": "6.0.0"
},
"peerDependencies": {
"postcss": "^8.0.0"
"postcss": "^8.3"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/eslint-parser": "^7.13.10",
"eslint": "^7.22.0",
"postcss": "^8.2.8",
"postcss-tape": "^6.0.0",
"pre-commit": "^1.2.2",
"rollup": "^2.41.2",
"@rollup/plugin-babel": "^5.3.0"
"@babel/core": "7.15.5",
"@babel/eslint-parser": "7.15.4",
"@babel/preset-env": "7.15.6",
"@rollup/plugin-babel": "5.3.0",
"eslint": "7.32.0",
"postcss": "8.3.6",
"postcss-tape": "6.0.1",
"pre-commit": "1.2.2",
"rollup": "2.56.3"
},
"babel": {
"presets": [
Expand Down
Loading