@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 CHANGED
@@ -3,7 +3,7 @@
3
3
  /** @type import('eslint-define-config').EslintConfig */
4
4
  module.exports = {
5
5
  parser: '@typescript-eslint/parser',
6
- plugins: ['@typescript-eslint'],
6
+ plugins: ['@typescript-eslint', 'import'],
7
7
  parserOptions: {
8
8
  project: './**/tsconfig*.json',
9
9
  },
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
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2021 Nihal Gonsalves
3
+ Copyright (c) 2022 Nihal Gonsalves
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nihalgonsalves/esconfig",
3
- "version": "0.0.8",
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": "^4.22.0",
30
- "@typescript-eslint/parser": "^4.22.0",
31
- "eslint-config-airbnb-typescript": "^12.3.1",
32
- "eslint-config-prettier": "^8.3.0",
33
- "eslint-plugin-import": "^2.22.1",
34
- "eslint-plugin-jsx-a11y": "^6.4.1",
35
- "eslint-plugin-react": "^7.23.2",
36
- "eslint-plugin-react-hooks": "^4.2.0"
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": "^12.1.1",
40
- "@commitlint/config-conventional": "^12.1.1",
41
- "eslint": "^7.25.0",
42
- "eslint-define-config": "^1.0.8",
43
- "husky": "^6.0.0",
44
- "prettier": "^2.2.1",
45
- "standard-version": "^9.2.0",
46
- "typescript": "^4.2.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": "^7.25.0",
50
- "prettier": "^2.2.1",
51
- "typescript": "^4.2.4"
49
+ "eslint": "^8.15.0",
50
+ "prettier": "^2.6.2",
51
+ "typescript": "^4.6.4"
52
52
  }
53
53
  }