Skip to content

Commit 82e4865

Browse files
committedNov 23, 2018
chore(deps): update
1 parent 8c7f208 commit 82e4865

File tree

4 files changed

+2532
-14
lines changed

4 files changed

+2532
-14
lines changed
 

‎.travis.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
language: node_js
22
node_js:
3-
- "4"
43
- "6"
5-
- "node"
4+
- "8"
5+
- "10"
6+
- "11"
67
script: npm run travis
78

89
after_success:

‎CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

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

910
## [0.0.11] - 2015-07-19
1011
### Fixed

‎package.json

+13-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
{
22
"name": "postcss-modules-local-by-default",
3-
"version": "1.2.0",
3+
"version": "2.0.0",
44
"description": "A CSS Modules transform to make local scope the default",
5+
"main": "src/index.js",
6+
"engines": {
7+
"node": ">= 6"
8+
},
59
"keywords": [
610
"css-modules",
711
"postcss",
@@ -16,26 +20,25 @@
1620
},
1721
"dependencies": {
1822
"css-selector-tokenizer": "^0.7.0",
19-
"postcss": "^6.0.1"
23+
"postcss": "^7.0.6"
2024
},
2125
"devDependencies": {
2226
"chokidar-cli": "^1.0.1",
2327
"codecov.io": "^0.1.2",
24-
"coveralls": "^2.11.2",
25-
"eslint": "^3.19.0",
28+
"coveralls": "^3.0.2",
29+
"eslint": "^5.9.0",
2630
"istanbul": "^0.4.5",
2731
"tape": "^4.0.0"
2832
},
2933
"scripts": {
3034
"lint": "eslint index.js test.js",
31-
"pretest": "npm run lint",
35+
"pretest": "yarn lint",
3236
"test": "tape test.js",
33-
"autotest": "chokidar index.js test.js -c 'npm test'",
34-
"precover": "npm run lint",
37+
"autotest": "chokidar index.js test.js -c 'yarn test'",
38+
"precover": "yarn lint",
3539
"cover": "istanbul cover test.js",
36-
"travis": "npm run cover -- --report lcovonly",
37-
"prepublish": "npm prune && npm test",
38-
"publish-patch": "npm prune && npm test && npm version patch && git push && git push --tags && npm publish"
40+
"travis": "yarn lint && yarn cover -- --report lcovonly",
41+
"prepublish": "yarn test"
3942
},
4043
"files": [
4144
"index.js"

‎yarn.lock

+2,513
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.