Skip to content

Commit

Permalink
chore: Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDeBoey committed Apr 11, 2020
1 parent c31ac3f commit 649faf4
Show file tree
Hide file tree
Showing 9 changed files with 323 additions and 75 deletions.
128 changes: 128 additions & 0 deletions .all-contributorsrc
@@ -0,0 +1,128 @@
{
"projectName": "eslint-config-kentcdodds",
"projectOwner": "kentcdodds",
"imageSize": 100,
"commit": false,
"commitConvention": "none",
"contributorsPerLine": 7,
"repoHost": "https://github.com",
"repoType": "github",
"skipCi": false,
"files": [
"README.md"
],
"contributors": [
{
"login": "kentcdodds",
"name": "Kent C. Dodds",
"avatar_url": "https://avatars.githubusercontent.com/u/1500684?v=3",
"profile": "https://kentcdodds.com",
"contributions": [
"code",
"doc",
"infra"
]
},
{
"login": "BarryThePenguin",
"name": "Jonathan Haines",
"avatar_url": "https://avatars3.githubusercontent.com/u/1351912?v=4",
"profile": "http://jonno.dev",
"contributions": [
"code"
]
},
{
"login": "zack9433",
"name": "Zack Yang",
"avatar_url": "https://avatars3.githubusercontent.com/u/1610642?v=4",
"profile": "https://github.com/zack9433",
"contributions": [
"code"
]
},
{
"login": "Mohamed3on",
"name": "Mohamed Oun",
"avatar_url": "https://avatars2.githubusercontent.com/u/12295159?v=4",
"profile": "https://mohamed3on.online/",
"contributions": [
"code"
]
},
{
"login": "alexandernanberg",
"name": "Alexander Nanberg",
"avatar_url": "https://avatars3.githubusercontent.com/u/8997319?v=4",
"profile": "https://alexandernanberg.com",
"contributions": [
"code"
]
},
{
"login": "huchenme",
"name": "Hu Chen",
"avatar_url": "https://avatars3.githubusercontent.com/u/2078389?v=4",
"profile": "https://huchen.dev",
"contributions": [
"code"
]
},
{
"login": "weyert",
"name": "Weyert de Boer",
"avatar_url": "https://avatars3.githubusercontent.com/u/7049?v=4",
"profile": "https://github.com/weyert",
"contributions": [
"code"
]
},
{
"login": "ultrox",
"name": "Marko Vujanic",
"avatar_url": "https://avatars3.githubusercontent.com/u/3077558?v=4",
"profile": "http://ma.vu",
"contributions": [
"code"
]
},
{
"login": "MichaelDeBoey",
"name": "Michaël De Boey",
"avatar_url": "https://avatars3.githubusercontent.com/u/6643991?v=4",
"profile": "https://michaeldeboey.be",
"contributions": [
"code",
"doc",
"tool"
]
},
{
"login": "jdorfman",
"name": "Justin Dorfman",
"avatar_url": "https://avatars1.githubusercontent.com/u/398230?v=4",
"profile": "https://www.justindorfman.com",
"contributions": [
"doc"
]
},
{
"login": "arvigeus",
"name": "Nikolay Stoynov",
"avatar_url": "https://avatars2.githubusercontent.com/u/4872470?v=4",
"profile": "http://arvigeus.github.com",
"contributions": [
"doc"
]
},
{
"login": "andrewmcodes",
"name": "Andrew Mason",
"avatar_url": "https://avatars1.githubusercontent.com/u/18423853?v=4",
"profile": "https://www.andrewm.codes",
"contributions": [
"doc"
]
}
]
}
1 change: 0 additions & 1 deletion .eslintrc

This file was deleted.

3 changes: 0 additions & 3 deletions .gitignore
@@ -1,10 +1,7 @@
node_modules
coverage
dist
.opt-in
.opt-out
.DS_Store
.eslintcache

# these cause more harm than good
# when working with contributors
Expand Down
5 changes: 5 additions & 0 deletions .huskyrc.js
@@ -0,0 +1,5 @@
module.exports = {
hooks: {
'pre-commit': 'pretty-quick --staged && npm run validate',
},
}
3 changes: 3 additions & 0 deletions .prettierignore
@@ -0,0 +1,3 @@
node_modules
coverage
dist
9 changes: 1 addition & 8 deletions .prettierrc.js
@@ -1,8 +1 @@
module.exports = {
bracketSpacing: false,
endOfLine: 'lf',
proseWrap: 'always',
semi: false,
singleQuote: true,
trailingComma: 'all',
}
module.exports = require('kcd-scripts/prettier')
28 changes: 18 additions & 10 deletions .travis.yml
@@ -1,15 +1,23 @@
sudo: false
language: node_js
cache:
directories:
- ~/.npm
cache: npm
notifications:
email: false
node_js: '8'
node_js:
- 8.10
- 10
- 12
- node
install: npm install
script: npm run validate
after_success:
- npx -p semantic-release@7 -c "semantic-release pre && npm publish &&
semantic-release post"
script:
- npm run validate
- npx codecov@3
branches:
only: master
only:
- master
- beta

jobs:
include:
- stage: release
node_js: 12
script: node src travis-release

0 comments on commit 649faf4

Please sign in to comment.