@nihalgonsalves/esconfig 0.0.8 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +1 -1
- package/CHANGELOG.md +12 -0
- package/LICENSE +1 -1
- package/package.json +20 -20
package/.eslintrc.js
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.1](https://github.com/nihalgonsalves/esconfig/compare/v0.1.0...v0.1.1) (2022-05-17)
|
|
6
|
+
|
|
7
|
+
## [0.1.0](https://github.com/nihalgonsalves/esconfig/compare/v0.0.9...v0.1.0) (2021-12-29)
|
|
8
|
+
|
|
9
|
+
### ⚠ BREAKING CHANGES
|
|
10
|
+
|
|
11
|
+
- eslint v8, node v16
|
|
12
|
+
|
|
13
|
+
- empty commit for version bump ([0868bd0](https://github.com/nihalgonsalves/esconfig/commit/0868bd0467e6ae088413a725663afbd451e44347))
|
|
14
|
+
|
|
15
|
+
### [0.0.9](https://github.com/nihalgonsalves/esconfig/compare/v0.0.8...v0.0.9) (2021-05-12)
|
|
16
|
+
|
|
5
17
|
### [0.0.8](https://github.com/nihalgonsalves/esconfig/compare/v0.0.7...v0.0.8) (2021-04-25)
|
|
6
18
|
|
|
7
19
|
### Bug Fixes
|
package/LICENSE
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nihalgonsalves/esconfig",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Shared ECMAScript Config (TS, Lint, Prettier)",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": "git@github.com:nihalgonsalves/esconfig.git",
|
|
@@ -26,28 +26,28 @@
|
|
|
26
26
|
"prepare": "husky install"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
30
|
-
"@typescript-eslint/parser": "^
|
|
31
|
-
"eslint-config-airbnb-typescript": "^
|
|
32
|
-
"eslint-config-prettier": "^8.
|
|
33
|
-
"eslint-plugin-import": "^2.
|
|
34
|
-
"eslint-plugin-jsx-a11y": "^6.
|
|
35
|
-
"eslint-plugin-react": "^7.
|
|
36
|
-
"eslint-plugin-react-hooks": "^4.
|
|
29
|
+
"@typescript-eslint/eslint-plugin": "^5.25.0",
|
|
30
|
+
"@typescript-eslint/parser": "^5.25.0",
|
|
31
|
+
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
32
|
+
"eslint-config-prettier": "^8.5.0",
|
|
33
|
+
"eslint-plugin-import": "^2.26.0",
|
|
34
|
+
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
35
|
+
"eslint-plugin-react": "^7.29.4",
|
|
36
|
+
"eslint-plugin-react-hooks": "^4.5.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@commitlint/cli": "^
|
|
40
|
-
"@commitlint/config-conventional": "^
|
|
41
|
-
"eslint": "^
|
|
42
|
-
"eslint-define-config": "^1.
|
|
43
|
-
"husky": "^
|
|
44
|
-
"prettier": "^2.2
|
|
45
|
-
"standard-version": "^9.
|
|
46
|
-
"typescript": "^4.
|
|
39
|
+
"@commitlint/cli": "^17.0.0",
|
|
40
|
+
"@commitlint/config-conventional": "^17.0.0",
|
|
41
|
+
"eslint": "^8.15.0",
|
|
42
|
+
"eslint-define-config": "^1.4.1",
|
|
43
|
+
"husky": "^8.0.1",
|
|
44
|
+
"prettier": "^2.6.2",
|
|
45
|
+
"standard-version": "^9.5.0",
|
|
46
|
+
"typescript": "^4.6.4"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"eslint": "^
|
|
50
|
-
"prettier": "^2.2
|
|
51
|
-
"typescript": "^4.
|
|
49
|
+
"eslint": "^8.15.0",
|
|
50
|
+
"prettier": "^2.6.2",
|
|
51
|
+
"typescript": "^4.6.4"
|
|
52
52
|
}
|
|
53
53
|
}
|