Skip to content
This repository was archived by the owner on Jun 6, 2022. It is now read-only.

Commit 12ed317

Browse files
committed
4.0.0
1 parent a980515 commit 12ed317

File tree

3 files changed

+21
-13
lines changed

3 files changed

+21
-13
lines changed

.travis.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
sudo: false
1+
# https://docs.travis-ci.com/user/travis-lint
2+
23
language: node_js
4+
35
node_js:
4-
- "6"
5-
- "4"
6-
- "stable"
6+
- 6
7+
8+
install:
9+
- npm install --ignore-scripts

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 4.0.0 - 2018-09-17
2+
3+
- Added: compatibility with postcss v7.x
4+
- Added: compatibility with node v6.x
5+
16
# 3.0.1 - 2017-05-15
27

38
- Fixed: incorrect export ([#69](https://github.com/postcss/postcss-selector-not/issues/8))

package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postcss-selector-not",
3-
"version": "3.0.1",
3+
"version": "4.0.0",
44
"description": "PostCSS plugin to transform :not() W3C CSS level 4 pseudo class to :not() CSS level 3 selectors",
55
"keywords": [
66
"postcss",
@@ -20,19 +20,19 @@
2020
"dist"
2121
],
2222
"dependencies": {
23-
"balanced-match": "^0.4.2",
23+
"balanced-match": "^1.0.0",
2424
"postcss": "^7.0.2"
2525
},
2626
"devDependencies": {
27-
"babel-cli": "^6.24.1",
28-
"babel-plugin-add-module-exports": "^0.2.1",
29-
"babel-preset-env": "^1.4.0",
30-
"babel-register": "^6.24.1",
31-
"eslint": "^3.19.0",
32-
"tape": "^4.6.3"
27+
"babel-cli": "^6.26.0",
28+
"babel-plugin-add-module-exports": "^1.0.0",
29+
"babel-preset-env": "^1.7.0",
30+
"babel-register": "^6.26.0",
31+
"eslint": "^5.6.0",
32+
"tape": "^4.9.1"
3333
},
3434
"scripts": {
35-
"lint": "eslint *.js ./src/ ./test/",
35+
"lint": "eslint ./src/*.js ./test/*.js",
3636
"tape": "tape -r babel-register test/*.js",
3737
"test": "npm run lint && npm run babelify && npm run tape",
3838
"babelify": "babel src --out-dir dist",

0 commit comments

Comments
 (0)