nightingale-level-names 11.7.2 → 12.0.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
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [12.0.0](https://github.com/christophehurpeau/nightingale/compare/v11.9.0...v12.0.0) (2021-12-11)
7
+
8
+
9
+ ### Build System
10
+
11
+ * node 14 and remove dev builds ([432ecd1](https://github.com/christophehurpeau/nightingale/commit/432ecd1faafd0419f57dea00fce560e4cccc207f))
12
+
13
+
14
+ ### BREAKING CHANGES
15
+
16
+ * requires node 14
17
+
18
+
19
+
20
+
21
+
6
22
  ## [11.7.2](https://github.com/christophehurpeau/nightingale/compare/v11.7.1...v11.7.2) (2021-11-27)
7
23
 
8
24
  **Note:** Version bump only for package nightingale-level-names
@@ -1,5 +1,21 @@
1
1
  {
2
2
  "root": true,
3
3
  "extends": ["@pob/eslint-config/node-commonjs"],
4
- "ignorePatterns": ["*.d.ts"]
4
+ "ignorePatterns": ["*.d.ts"],
5
+ "overrides": [
6
+ {
7
+ "files": ["**/*.test.{mjs,js}", "__tests__/**/*.{mjs,js}"],
8
+ "env": {
9
+ "jest": true
10
+ },
11
+ "rules": {
12
+ "import/no-extraneous-dependencies": [
13
+ "error",
14
+ {
15
+ "devDependencies": true
16
+ }
17
+ ]
18
+ }
19
+ }
20
+ ]
5
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nightingale-level-names",
3
- "version": "11.7.2",
3
+ "version": "12.0.0",
4
4
  "description": "Nightingale level values to level names",
5
5
  "keywords": [
6
6
  "logger"
@@ -15,7 +15,7 @@
15
15
  "homepage": "https://github.com/christophehurpeau/nightingale",
16
16
  "type": "commonjs",
17
17
  "engines": {
18
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
18
+ "node": "^14.13.1 || >=16.0.0"
19
19
  },
20
20
  "main": "./lib/index.js",
21
21
  "types": "./lib/index.d.ts",
@@ -37,7 +37,7 @@
37
37
  },
38
38
  "pob": {},
39
39
  "devDependencies": {
40
- "typescript": "4.5.2"
40
+ "typescript": "4.5.3"
41
41
  },
42
- "gitHead": "00b1ec6c7468b320e268a12eaac70d59a177787b"
42
+ "gitHead": "682f57fa30eaca9732681d16008abb2680b24174"
43
43
  }