@clipboard-health/eslint-config 1.1.0 → 1.2.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,13 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.2.0](https://github.com/ClipboardHealth/cbh-core/compare/eslint-config-1.1.0...eslint-config-1.2.0) (2023-04-05)
6
+
7
+
8
+ ### Features
9
+
10
+ * update generate to add new lib to tsconfig.base.json ([6e3a001](https://github.com/ClipboardHealth/cbh-core/commit/6e3a001a54981ab99b2d2da48784ac879b7c5146))
11
+
5
12
  ## [1.1.0](https://github.com/ClipboardHealth/cbh-core/compare/eslint-config-1.0.1...eslint-config-1.1.0) (2023-04-04)
6
13
 
7
14
 
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # eslint-config
1
+ # @clipboard-health/eslint-config
2
2
 
3
3
  Clipboard Health's [ESLint](https://eslint.org/) configuration.
4
4
 
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@clipboard-health/eslint-config",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "main": "./src/index.js",
5
+ "scripts": {
6
+ "build": "nx build eslint-config",
7
+ "lint": "nx lint eslint-config",
8
+ "test": "nx test eslint-config"
9
+ },
5
10
  "peerDependencies": {
6
11
  "@typescript-eslint/eslint-plugin": ">= 5",
7
12
  "eslint": ">= 8",
8
13
  "eslint-plugin-simple-import-sort": ">= 10",
9
14
  "tslib": "2.5.0"
10
15
  },
11
- "scripts": {
12
- "build": "nx build eslint-config",
13
- "lint": "nx lint eslint-config",
14
- "test": "nx test eslint-config"
15
- },
16
16
  "types": "./src/index.d.ts"
17
17
  }