nightingale-debug 18.1.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 +5 -0
  2. package/package.json +17 -15
package/CHANGELOG.md CHANGED
@@ -3,6 +3,11 @@
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
+ Version bump for dependency: nightingale
9
+
10
+
6
11
  ## [18.1.0](https://github.com/christophehurpeau/nightingale/compare/v18.0.0...v18.1.0) (2025-11-18)
7
12
 
8
13
  Version bump for dependency: nightingale
package/package.json CHANGED
@@ -1,22 +1,25 @@
1
1
  {
2
2
  "name": "nightingale-debug",
3
- "version": "18.1.0",
3
+ "version": "18.2.0",
4
4
  "description": "Deprecated: use createFindDebugLevel from nightingale instead",
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-debug"
14
18
  },
15
- "homepage": "https://github.com/christophehurpeau/nightingale",
19
+ "files": [
20
+ "lib"
21
+ ],
16
22
  "type": "module",
17
- "engines": {
18
- "node": ">=22.18.0"
19
- },
20
23
  "sideEffects": false,
21
24
  "main": "./lib/index.js",
22
25
  "types": "./lib/index.d.ts",
@@ -27,19 +30,18 @@
27
30
  "default": "./lib/index.js"
28
31
  }
29
32
  },
30
- "files": [
31
- "lib"
32
- ],
33
33
  "scripts": {
34
34
  "clean": "yarn clean:build",
35
35
  "lint": "yarn run lint:eslint",
36
- "lint:eslint": "yarn ../.. run eslint --quiet packages/nightingale-debug",
37
- "test": "yarn ../../ run test -- packages/nightingale-debug",
36
+ "lint:eslint": "yarn '../..' run eslint --quiet 'packages/nightingale-debug'",
37
+ "test": "yarn '../..' run test -- 'packages/nightingale-debug'",
38
38
  "watch": "yarn clean:build && rollup --config rollup.config.mjs --watch"
39
39
  },
40
- "pob": {},
41
- "prettier": "@pob/root/prettier-config",
42
40
  "dependencies": {
43
- "nightingale": "18.1.0"
44
- }
41
+ "nightingale": "18.2.0"
42
+ },
43
+ "engines": {
44
+ "node": ">=22.18.0"
45
+ },
46
+ "pob": {}
45
47
  }