nightingale-level-names 11.6.0 → 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/.eslintrc.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "root": true,
3
- "extends": ["@pob/eslint-config/root", "@pob/eslint-config-node"],
3
+ "extends": ["@pob/eslint-config/root-commonjs"],
4
4
  "ignorePatterns": ["*.d.ts"]
5
5
  }
package/CHANGELOG.md CHANGED
@@ -3,6 +3,46 @@
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
+
22
+ ## [11.7.2](https://github.com/christophehurpeau/nightingale/compare/v11.7.1...v11.7.2) (2021-11-27)
23
+
24
+ **Note:** Version bump only for package nightingale-level-names
25
+
26
+
27
+
28
+
29
+
30
+ ## [11.7.1](https://github.com/christophehurpeau/nightingale/compare/v11.7.0...v11.7.1) (2021-06-29)
31
+
32
+ **Note:** Version bump only for package nightingale-level-names
33
+
34
+
35
+
36
+
37
+
38
+ # [11.7.0](https://github.com/christophehurpeau/nightingale/compare/v11.6.0...v11.7.0) (2021-03-29)
39
+
40
+ **Note:** Version bump only for package nightingale-level-names
41
+
42
+
43
+
44
+
45
+
6
46
  # [11.6.0](https://github.com/christophehurpeau/nightingale/compare/v11.5.4...v11.6.0) (2021-03-21)
7
47
 
8
48
  **Note:** Version bump only for package nightingale-level-names
@@ -1,5 +1,21 @@
1
1
  {
2
2
  "root": true,
3
- "extends": ["@pob/eslint-config", "@pob/eslint-config-node"],
4
- "ignorePatterns": ["*.d.ts"]
3
+ "extends": ["@pob/eslint-config/node-commonjs"],
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.6.0",
3
+ "version": "12.0.0",
4
4
  "description": "Nightingale level values to level names",
5
5
  "keywords": [
6
6
  "logger"
@@ -13,17 +13,22 @@
13
13
  "directory": "packages/nightingale-level-names"
14
14
  },
15
15
  "homepage": "https://github.com/christophehurpeau/nightingale",
16
+ "type": "commonjs",
16
17
  "engines": {
17
- "node": ">=12.10.0"
18
+ "node": "^14.13.1 || >=16.0.0"
18
19
  },
19
20
  "main": "./lib/index.js",
20
21
  "types": "./lib/index.d.ts",
22
+ "exports": {
23
+ ".": "./lib/index.js",
24
+ "./package.json": "./package.json"
25
+ },
21
26
  "sideEffects": false,
22
27
  "scripts": {
23
28
  "build": "yarn run build:definitions",
24
29
  "build:definitions": "tsc --lib esnext --noEmit --skipLibCheck ./lib/index.d.ts",
25
30
  "lint": "yarn run lint:eslint",
26
- "lint:eslint": "yarn --cwd ../.. run eslint --report-unused-disable-directives --quiet packages/nightingale-level-names"
31
+ "lint:eslint": "cd ../.. && yarn run eslint --report-unused-disable-directives --resolve-plugins-relative-to . --quiet packages/nightingale-level-names"
27
32
  },
28
33
  "prettier": {
29
34
  "trailingComma": "all",
@@ -32,13 +37,7 @@
32
37
  },
33
38
  "pob": {},
34
39
  "devDependencies": {
35
- "@pob/eslint-config": "43.0.0",
36
- "@pob/eslint-config-node": "43.1.0",
37
- "eslint": "7.22.0",
38
- "eslint-import-resolver-node": "0.3.4",
39
- "eslint-plugin-import": "2.22.1",
40
- "eslint-plugin-node": "11.1.0",
41
- "eslint-plugin-unicorn": "25.0.1"
40
+ "typescript": "4.5.3"
42
41
  },
43
- "gitHead": "56849d6762e917f29c20f932569973046a24f602"
42
+ "gitHead": "682f57fa30eaca9732681d16008abb2680b24174"
44
43
  }