@clipboard-health/eslint-config 1.3.0 → 1.5.0

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/CHANGELOG.md CHANGED
@@ -2,6 +2,27 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.5.0](https://github.com/ClipboardHealth/cbh-core/compare/eslint-config-1.4.0...eslint-config-1.5.0) (2023-04-19)
6
+
7
+
8
+ ### Features
9
+
10
+ * **DEV-19:** implement `crypto-kms` lib ([#22](https://github.com/ClipboardHealth/cbh-core/issues/22)) ([79a19d3](https://github.com/ClipboardHealth/cbh-core/commit/79a19d30b340b39e792cb5bb7ee01fe178d6bd27))
11
+
12
+ ## [1.4.0](https://github.com/ClipboardHealth/cbh-core/compare/eslint-config-1.3.0...eslint-config-1.4.0) (2023-04-18)
13
+
14
+
15
+ ### Features
16
+
17
+ * update eslint env to es2022 ([54fecf2](https://github.com/ClipboardHealth/cbh-core/commit/54fecf2ac5eba0e6da760982b42045498c988fa8))
18
+
19
+ ## [1.4.0](https://github.com/ClipboardHealth/cbh-core/compare/eslint-config-1.3.0...eslint-config-1.4.0) (2023-04-18)
20
+
21
+
22
+ ### Features
23
+
24
+ * update eslint env to es2022 ([54fecf2](https://github.com/ClipboardHealth/cbh-core/commit/54fecf2ac5eba0e6da760982b42045498c988fa8))
25
+
5
26
  ## [1.3.0](https://github.com/ClipboardHealth/cbh-core/compare/eslint-config-1.2.1...eslint-config-1.3.0) (2023-04-18)
6
27
 
7
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clipboard-health/eslint-config",
3
- "version": "1.3.0",
3
+ "version": "1.5.0",
4
4
  "main": "./src/index.js",
5
5
  "scripts": {
6
6
  "build": "nx build eslint-config",
package/src/index.d.ts CHANGED
@@ -8,7 +8,7 @@ declare const _extends: string[];
8
8
  export { _extends as extends };
9
9
  export declare const root: boolean;
10
10
  export declare namespace env {
11
- const es2021: boolean;
11
+ const es2022: boolean;
12
12
  const node: boolean;
13
13
  const jest: boolean;
14
14
  }
package/src/index.js CHANGED
@@ -17,7 +17,7 @@ module.exports = {
17
17
  ],
18
18
  root: true,
19
19
  env: {
20
- es2021: true,
20
+ es2022: true,
21
21
  node: true,
22
22
  jest: true,
23
23
  },