Skip to content

Commit

Permalink
chore(release): 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
evilebottnawi committed Nov 23, 2018
2 parents 8c7f208 + 82e4865 commit ef87adb
Show file tree
Hide file tree
Showing 4 changed files with 2,532 additions and 14 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
@@ -1,8 +1,9 @@
language: node_js
node_js:
- "4"
- "6"
- "node"
- "8"
- "10"
- "11"
script: npm run travis

after_success:
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.md
Expand Up @@ -2,9 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased][unreleased]
## [2.0.0] - 2018-11-23
### Changed
- Nothing yet.
- Drop support `nodejs@4`.
- Update `postcss` version to `7`.

## [0.0.11] - 2015-07-19
### Fixed
Expand Down
23 changes: 13 additions & 10 deletions package.json
@@ -1,7 +1,11 @@
{
"name": "postcss-modules-local-by-default",
"version": "1.2.0",
"version": "2.0.0",
"description": "A CSS Modules transform to make local scope the default",
"main": "src/index.js",
"engines": {
"node": ">= 6"
},
"keywords": [
"css-modules",
"postcss",
Expand All @@ -16,26 +20,25 @@
},
"dependencies": {
"css-selector-tokenizer": "^0.7.0",
"postcss": "^6.0.1"
"postcss": "^7.0.6"
},
"devDependencies": {
"chokidar-cli": "^1.0.1",
"codecov.io": "^0.1.2",
"coveralls": "^2.11.2",
"eslint": "^3.19.0",
"coveralls": "^3.0.2",
"eslint": "^5.9.0",
"istanbul": "^0.4.5",
"tape": "^4.0.0"
},
"scripts": {
"lint": "eslint index.js test.js",
"pretest": "npm run lint",
"pretest": "yarn lint",
"test": "tape test.js",
"autotest": "chokidar index.js test.js -c 'npm test'",
"precover": "npm run lint",
"autotest": "chokidar index.js test.js -c 'yarn test'",
"precover": "yarn lint",
"cover": "istanbul cover test.js",
"travis": "npm run cover -- --report lcovonly",
"prepublish": "npm prune && npm test",
"publish-patch": "npm prune && npm test && npm version patch && git push && git push --tags && npm publish"
"travis": "yarn lint && yarn cover -- --report lcovonly",
"prepublish": "yarn test"
},
"files": [
"index.js"
Expand Down

0 comments on commit ef87adb

Please sign in to comment.