Skip to content

Commit

Permalink
chore(release): 4.0.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Sep 22, 2020
1 parent 52f9b71 commit aa9902f
Show file tree
Hide file tree
Showing 5 changed files with 2,799 additions and 976 deletions.
3 changes: 2 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
"ecmaVersion": 2018
},
"env": {
"node": true,
"es6": true,
"node": true
"jest": true
},
"extends": "eslint:recommended"
}
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [4.0.0-rc.0] - 2020-07-25
## [4.0.0-rc.1] - 2020-09-22

### BREAKING CHANGE

- update `icss-utils` for PostCSS 8 compatibility

## [4.0.0-rc.0] - 2020-09-18

### BREAKING CHANGE

Expand Down
25 changes: 11 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postcss-modules-local-by-default",
"version": "4.0.0-rc.0",
"version": "4.0.0-rc.1",
"description": "A CSS Modules transform to make local scope the default",
"main": "src/index.js",
"author": "Mark Dalgleish",
Expand All @@ -26,28 +26,25 @@
"eslint": "eslint --ignore-path .gitignore .",
"lint": "yarn eslint && yarn prettier",
"pretest": "yarn lint",
"test": "tape test/index.js",
"autotest": "chokidar src/index.js test/test.js -c 'yarn test'",
"cover": "istanbul cover test/index.js",
"ci": "yarn pretest && yarn cover",
"test": "jest",
"test:only": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --collectCoverageFrom=\"src/**/*\"",
"test:ci": "yarn pretest && yarn cover",
"prepublishOnly": "yarn test"
},
"dependencies": {
"icss-utils": "^4.1.1",
"icss-utils": "^5.0.0-rc.0",
"postcss-selector-parser": "^6.0.2",
"postcss-value-parser": "^4.1.0"
},
"devDependencies": {
"chokidar-cli": "^2.1.0",
"codecov.io": "^0.1.6",
"coveralls": "^3.1.0",
"eslint": "^7.9.0",
"istanbul": "^0.4.5",
"postcss": "^8.0.3",
"prettier": "^2.1.2",
"tape": "^5.0.1"
"jest": "^26.4.2",
"postcss": "^8.0.7",
"prettier": "^2.1.2"
},
"peerDependencies": {
"postcss": "^8.0.3"
"postcss": "^8.0.0"
}
}
Loading

0 comments on commit aa9902f

Please sign in to comment.