Skip to content
This repository was archived by the owner on Oct 14, 2025. It is now read-only.

Commit 3fd2b3f

Browse files
authored
Merge pull request #49 from vaibhavhrt/deps
Update Dependencies
2 parents b321dad + 9b6f119 commit 3fd2b3f

25 files changed

+12176
-18558
lines changed

.editorconfig

Lines changed: 0 additions & 9 deletions
This file was deleted.

.eslintrc.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
module.exports = {
2+
env: {
3+
browser: true,
4+
es2021: true,
5+
},
6+
extends: ['eslint:recommended', 'plugin:react/recommended', 'react-app'],
7+
parser: '@typescript-eslint/parser',
8+
parserOptions: {
9+
ecmaFeatures: {
10+
jsx: true,
11+
},
12+
ecmaVersion: 12,
13+
sourceType: 'module',
14+
},
15+
plugins: ['react', 'react-hooks', 'prettier'],
16+
settings: { react: { version: '^15.0.0 || ^16.0.0' } },
17+
rules: {
18+
quotes: ['error', 'single'],
19+
semi: ['error', 'always'],
20+
'comma-dangle': ['error', 'always-multiline'],
21+
},
22+
};

.prettierrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"bracketSpacing": true,
3+
"jsxBracketSameLine": false,
4+
"singleQuote": true,
5+
"trailingComma": "all"
6+
}

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
language: node_js
22
node_js:
33
- 'stable'
4-
- 11
4+
- 12
55
- 10
6-
- 9
7-
- 8
86
install:
97
- yarn install
108
- yarn add react prop-types

CHANGELOG.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,27 @@ All notable changes to the "react-github-buttons" project will be documented in
44

55
## [Unreleased]
66

7+
## [0.5.0] 2020-10-05
8+
### Changed
9+
- Switch to yarn
10+
- Switch to eslint & prettier
11+
### Security
12+
- Update Dependencies
13+
### Removed
14+
- Drop node 8 support
15+
716
## [0.4.0] 2019-6-15
817
### Added
9-
1018
- Sponsor button
1119

1220
## [0.3.0] 2019-6-15
1321
### Added
14-
1522
- Used by button
1623

1724
## [0.2.0] 2019-6-13
1825
### Added
19-
2026
- Watch Button
2127

2228
## [0.1.0] 2019-6-13
2329
### Added
24-
2530
- Star and Fork button.

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,6 @@ function App() {
3535
}
3636
```
3737

38-
## Release Notes
39-
40-
## 0.4.0
41-
### Added
42-
43-
- Sponsor button
44-
4538
## Issues
4639

4740
Issues, bugs and feature request at [github issues page](https://github.com/vaibhavhrt/react-github-buttons/issues)

0 commit comments

Comments
 (0)