Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8c49ac7

Browse files
authored
Merge pull request coderplex-org#155 from coderplex/develop
Update Deps, remove greenkeeperbot and add renovate bot
2 parents a461134 + 7b47bdd commit 8c49ac7

File tree

4 files changed

+896
-778
lines changed

4 files changed

+896
-778
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ node_js:
66
before_install:
77
- 'curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 0.27.5'
88
- 'export PATH="$HOME/.yarn/bin:$PATH"'
9-
- yarn global add greenkeeper-lockfile@1
10-
before_script: greenkeeper-lockfile-update
11-
after_script: greenkeeper-lockfile-upload
129
cache: yarn
1310
env:
1411
global:

package.json

Lines changed: 32 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
"main": "index.js",
66
"scripts": {
77
"test": "xo && jest",
8-
"lint":
9-
"prettier 'utils/**/*.js' 'components/**/*.js' 'pages/**/*.js' 'lib/**/*.js' 'hocs/**/*.js' '*.js' '*.json' --write && xo && markdownlint .",
8+
"lint": "prettier 'utils/**/*.js' 'components/**/*.js' 'pages/**/*.js' 'lib/**/*.js' 'hocs/**/*.js' '*.js' '*.json' --write && xo && markdownlint .",
109
"precommit": "lint-staged",
1110
"analyze": "cross-env ANALYZE=1 next build",
1211
"dev": "cross-env NODE_ENV=development node server.js",
@@ -18,19 +17,32 @@
1817
},
1918
"xo": {
2019
"parser": "babel-eslint",
21-
"extends": ["prettier", "prettier/react", "plugin:react/recommended"],
22-
"env": ["browser", "node"],
20+
"extends": [
21+
"prettier",
22+
"prettier/react",
23+
"plugin:react/recommended"
24+
],
25+
"env": [
26+
"browser",
27+
"node"
28+
],
2329
"rules": {
2430
"linebreak-style": 0,
2531
"react/display-name": 0,
2632
"react/prop-types": 0
2733
},
2834
"space:": 2,
29-
"ignores": ["next.config.js"],
35+
"ignores": [
36+
"next.config.js"
37+
],
3038
"overrides": [
3139
{
3240
"files": "**/__tests__/*.test.js",
33-
"globals": ["describe", "it", "expect"]
41+
"globals": [
42+
"describe",
43+
"it",
44+
"expect"
45+
]
3446
}
3547
]
3648
},
@@ -41,8 +53,16 @@
4153
"jest --findRelatedTests",
4254
"git add"
4355
],
44-
"**/*.md": ["prettier", "markdownlint", "git add"],
45-
".github/CONTRIBUTING.md": ["doctoc", "prettier", "git add"]
56+
"**/*.md": [
57+
"prettier",
58+
"markdownlint",
59+
"git add"
60+
],
61+
".github/CONTRIBUTING.md": [
62+
"doctoc",
63+
"prettier",
64+
"git add"
65+
]
4666
},
4767
"dependencies": {
4868
"babel-plugin-emotion": "^8.0.10",
@@ -54,12 +74,9 @@
5474
"isomorphic-unfetch": "2.0.0",
5575
"lodash.take": "^4.1.1",
5676
"marked": "^0.3.6",
57-
"next": "^4.1.0",
77+
"next": "^4.2.3",
5878
"nprogress": "^0.2.0",
5979
"path-match": "1.2.4",
60-
"preact": "^8.2.6",
61-
"preact-compat": "^3.17.0",
62-
"preact-emotion": "^8.0.10",
6380
"prop-types": "^15.5.10",
6481
"react": "^16.0.0",
6582
"react-content-loader": "^1.7.1",
@@ -72,7 +89,7 @@
7289
},
7390
"devDependencies": {
7491
"all-contributors-cli": "^4.10.0",
75-
"babel-eslint": "^8.0.1",
92+
"babel-eslint": "7.2.3",
7693
"babel-plugin-lodash": "^3.2.11",
7794
"cross-env": "^5.0.2",
7895
"doctoc": "^1.3.0",
@@ -84,13 +101,13 @@
84101
"husky": "^0.14.3",
85102
"jest": "^22.0.0",
86103
"lint-staged": "^6.0.0",
87-
"markdownlint-cli": "^0.5.0",
104+
"markdownlint-cli": "^0.6.0",
88105
"opn": "^5.1.0",
89106
"prettier": "^1.7.0",
90107
"raf": "^3.4.0",
91108
"react-test-renderer": "^16.0.0",
92109
"typescript": "^2.6.1",
93-
"typescript-styled-plugin": "^0.2.0",
110+
"typescript-styled-plugin": "^0.4.0",
94111
"webpack-bundle-analyzer": "^2.8.3",
95112
"xo": "^0.18.2"
96113
},

renovate.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"extends": [
3+
"config:base"
4+
]
5+
}

0 commit comments

Comments
 (0)