Skip to content
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
chore(deps): update
  • Loading branch information
alexander-akait committed Nov 23, 2018
commit 82e4865418d780b4497a7879917168babb943518
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -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
Loading