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

Commit b1da2a1

Browse files
committed
7.0.0
1 parent 567f6c2 commit b1da2a1

File tree

6 files changed

+44
-23
lines changed

6 files changed

+44
-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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
node_modules
22
index.*.*
33
package-lock.json
4+
yarn.lock
45
*.log*
56
*.result.css
67
.*
78
!.editorconfig
9+
!.github
810
!.gitignore
911
!.rollup.js
1012
!.tape.js
11-
!.travis.yml

.travis.yml

Lines changed: 0 additions & 10 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 Pseudo Class Any Link
22

3+
### 7.0.0 (September 17, 2021)
4+
5+
- Updated: Support for PostCSS 8+ (major).
6+
- Updated: Support for Node v12+ (major).
7+
38
### 6.0.0 (September 17, 2018)
49

510
- Updated: Support for PostCSS v7+

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ nav :link > span, nav :visited > span {
8888
}
8989
```
9090

91-
[cli-img]: https://img.shields.io/travis/jonathantneal/postcss-pseudo-class-any-link.svg
92-
[cli-url]: https://travis-ci.org/jonathantneal/postcss-pseudo-class-any-link
91+
[cli-img]: https://github.com/csstools/postcss-pseudo-class-any-link/workflows/test/badge.svg
92+
[cli-url]: https://github.com/csstools/postcss-pseudo-class-any-link/actions/workflows/test.yml?query=workflow/test
9393
[css-img]: https://cssdb.org/badge/any-link-pseudo-class.svg
9494
[css-url]: https://cssdb.org/#any-link-pseudo-class
9595
[git-img]: https://img.shields.io/badge/support-chat-blue.svg

package.json

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postcss-pseudo-class-any-link",
3-
"version": "6.0.0",
3+
"version": "7.0.0",
44
"description": "Use the :any-link pseudo-class in CSS",
55
"author": "Jonathan Neal <[email protected]>",
66
"license": "CC0-1.0",
@@ -10,27 +10,34 @@
1010
"main": "index.js",
1111
"scripts": {
1212
"prepublishOnly": "npm test",
13-
"test": "echo 'Running tests...'; npm run test:js && npm run test:tape",
13+
"test": "npm run test:js && npm run test:tape",
1414
"test:js": "eslint *.js --cache --ignore-path .gitignore --quiet",
1515
"test:tape": "postcss-tape"
1616
},
1717
"engines": {
18-
"node": ">=10.0.0"
18+
"node": ">=12"
1919
},
2020
"peerDependencies": {
21-
"postcss": "^8.0.0"
21+
"postcss": "^8.3"
2222
},
2323
"dependencies": {
24-
"postcss-selector-parser": "^6.0.4"
24+
"postcss-selector-parser": "^6"
2525
},
2626
"devDependencies": {
27-
"eslint": "^7.22.0",
28-
"eslint-config-dev": "^2.0.0",
29-
"postcss": "^8.2.8",
30-
"postcss-tape": "^6.0.0"
27+
"eslint": "7.32.0",
28+
"postcss": "8.3.6",
29+
"postcss-tape": "6.0.1"
3130
},
3231
"eslintConfig": {
33-
"extends": "dev"
32+
"env": {
33+
"browser": true,
34+
"es6": true,
35+
"node": true
36+
},
37+
"parserOptions": {
38+
"sourceType": "module"
39+
},
40+
"root": true
3441
},
3542
"keywords": [
3643
"postcss",

0 commit comments

Comments
 (0)