nightingale-level-names 17.0.0 → 18.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/package.json +16 -14
package/CHANGELOG.md CHANGED
@@ -3,6 +3,21 @@
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
+ ## [18.2.0](https://github.com/christophehurpeau/nightingale/compare/v18.1.0...v18.2.0) (2026-06-12)
7
+
8
+ Note: no notable changes
9
+
10
+
11
+ ## [18.0.0](https://github.com/christophehurpeau/nightingale/compare/v17.0.1...v18.0.0) (2025-11-15)
12
+
13
+ ### ⚠ BREAKING CHANGES
14
+
15
+ * drop node 20
16
+
17
+ ### Features
18
+
19
+ * update dependencies
20
+
6
21
  ## [17.0.0](https://github.com/christophehurpeau/nightingale/compare/v16.2.0...v17.0.0) (2025-10-20)
7
22
 
8
23
  Note: no notable changes
package/package.json CHANGED
@@ -1,22 +1,25 @@
1
1
  {
2
2
  "name": "nightingale-level-names",
3
- "version": "17.0.0",
3
+ "version": "18.2.0",
4
4
  "description": "Nightingale level values to level names",
5
5
  "keywords": [
6
6
  "logger"
7
7
  ],
8
- "author": "Christophe Hurpeau <christophe@hurpeau.com> (http://christophe.hurpeau.com/)",
8
+ "homepage": "https://github.com/christophehurpeau/nightingale",
9
+ "bugs": {
10
+ "url": "https://github.com/christophehurpeau/nightingale/issues"
11
+ },
9
12
  "license": "ISC",
13
+ "author": "Christophe Hurpeau <christophe@hurpeau.com> (http://christophe.hurpeau.com/)",
10
14
  "repository": {
11
15
  "type": "git",
12
16
  "url": "https://github.com/christophehurpeau/nightingale.git",
13
17
  "directory": "packages/nightingale-level-names"
14
18
  },
15
- "homepage": "https://github.com/christophehurpeau/nightingale",
19
+ "files": [
20
+ "lib"
21
+ ],
16
22
  "type": "module",
17
- "engines": {
18
- "node": ">=20.11.0"
19
- },
20
23
  "sideEffects": false,
21
24
  "main": "./lib/index.cjs",
22
25
  "types": "./lib/index.d.ts",
@@ -28,18 +31,17 @@
28
31
  },
29
32
  "./package.json": "./package.json"
30
33
  },
31
- "files": [
32
- "lib"
33
- ],
34
34
  "scripts": {
35
35
  "build": "yarn run build:definitions",
36
36
  "build:definitions": "tsc --lib esnext --noEmit --skipLibCheck ./lib/index.d.ts",
37
37
  "lint": "yarn run lint:eslint",
38
- "lint:eslint": "yarn ../.. run eslint --quiet packages/nightingale-level-names"
38
+ "lint:eslint": "yarn '../..' run eslint --quiet 'packages/nightingale-level-names'"
39
39
  },
40
- "pob": {},
41
- "prettier": "@pob/root/prettier-config",
42
40
  "devDependencies": {
43
- "typescript": "5.9.2"
44
- }
41
+ "typescript": "6.0.3"
42
+ },
43
+ "engines": {
44
+ "node": ">=22.18.0"
45
+ },
46
+ "pob": {}
45
47
  }