nightingale-types 18.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 +5 -0
  2. package/package.json +24 -21
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-levels
9
+
10
+
6
11
  ## [18.0.0](https://github.com/christophehurpeau/nightingale/compare/v17.0.1...v18.0.0) (2025-11-15)
7
12
 
8
13
  ### ⚠ BREAKING CHANGES
package/package.json CHANGED
@@ -1,27 +1,31 @@
1
1
  {
2
2
  "name": "nightingale-types",
3
- "version": "18.0.0",
3
+ "version": "18.2.0",
4
4
  "description": "Nightingale types for typescript",
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-types"
14
18
  },
15
- "homepage": "https://github.com/christophehurpeau/nightingale",
19
+ "files": [
20
+ "src",
21
+ "dist"
22
+ ],
16
23
  "type": "module",
17
- "engines": {
18
- "node": ">=22.18.0"
19
- },
20
24
  "sideEffects": false,
21
25
  "main": "./dist/index-node22.mjs",
22
- "types": "./dist/definitions/index.d.ts",
23
26
  "module": "./dist/index-browser.es.js",
24
27
  "browser": "./dist/index-browser.es.js",
28
+ "types": "./dist/definitions/index.d.ts",
25
29
  "exports": {
26
30
  "./package.json": "./package.json",
27
31
  ".": {
@@ -37,19 +41,23 @@
37
41
  }
38
42
  }
39
43
  },
40
- "files": [
41
- "src",
42
- "dist"
43
- ],
44
44
  "scripts": {
45
- "build": "yarn clean:build && rollup --config rollup.config.mjs && yarn run build:definitions",
45
+ "build": "yarn run clean:build && rollup --config rollup.config.mjs && yarn run build:definitions",
46
46
  "build:definitions": "tsc -p tsconfig.json",
47
47
  "clean": "yarn clean:build",
48
48
  "clean:build": "pob-esbuild-clean-out dist",
49
49
  "lint": "yarn run lint:eslint",
50
- "lint:eslint": "yarn ../.. run eslint --quiet packages/nightingale-types",
50
+ "lint:eslint": "yarn '../..' run eslint --quiet 'packages/nightingale-types'",
51
+ "tsc": "tsc",
51
52
  "watch": "yarn clean:build && rollup --config rollup.config.mjs --watch"
52
53
  },
54
+ "dependencies": {
55
+ "nightingale-levels": "18.2.0"
56
+ },
57
+ "devDependencies": {
58
+ "@pob/rollup-esbuild": "9.1.1",
59
+ "typescript": "6.0.3"
60
+ },
53
61
  "browserslist": {
54
62
  "production": [
55
63
  "defaults",
@@ -59,6 +67,9 @@
59
67
  "not ios_saf < 10"
60
68
  ]
61
69
  },
70
+ "engines": {
71
+ "node": ">=22.18.0"
72
+ },
62
73
  "pob": {
63
74
  "bundler": "rollup-esbuild",
64
75
  "entries": [
@@ -77,13 +88,5 @@
77
88
  }
78
89
  ],
79
90
  "typescript": true
80
- },
81
- "prettier": "@pob/root/prettier-config",
82
- "dependencies": {
83
- "nightingale-levels": "18.0.0"
84
- },
85
- "devDependencies": {
86
- "@pob/rollup-esbuild": "7.3.2",
87
- "typescript": "5.9.3"
88
91
  }
89
92
  }