nightingale-level-names 11.7.1 → 11.7.2

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,14 @@
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
+ ## [11.7.2](https://github.com/christophehurpeau/nightingale/compare/v11.7.1...v11.7.2) (2021-11-27)
7
+
8
+ **Note:** Version bump only for package nightingale-level-names
9
+
10
+
11
+
12
+
13
+
6
14
  ## [11.7.1](https://github.com/christophehurpeau/nightingale/compare/v11.7.0...v11.7.1) (2021-06-29)
7
15
 
8
16
  **Note:** Version bump only for package nightingale-level-names
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "root": true,
3
- "extends": ["@pob/eslint-config", "@pob/eslint-config-node"],
3
+ "extends": ["@pob/eslint-config/node-commonjs"],
4
4
  "ignorePatterns": ["*.d.ts"]
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nightingale-level-names",
3
- "version": "11.7.1",
3
+ "version": "11.7.2",
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": "^12.20.0 || ^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.2.0",
36
- "@pob/eslint-config-node": "43.2.0",
37
- "eslint": "7.29.0",
38
- "eslint-import-resolver-node": "0.3.4",
39
- "eslint-plugin-import": "2.23.4",
40
- "eslint-plugin-node": "11.1.0",
41
- "eslint-plugin-unicorn": "29.0.0"
40
+ "typescript": "4.5.2"
42
41
  },
43
- "gitHead": "325214aa6c7f87ace818389b77ce7b4208005c11"
42
+ "gitHead": "00b1ec6c7468b320e268a12eaac70d59a177787b"
44
43
  }