Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update dependencies #48

Merged
merged 1 commit into from Apr 12, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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: kcd-scripts travis-release