nightingale-types 16.0.0 → 17.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/package.json +12 -10
package/CHANGELOG.md CHANGED
@@ -3,6 +3,15 @@
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
+ ## [17.0.0](https://github.com/christophehurpeau/nightingale/compare/v16.2.0...v17.0.0) (2025-10-20)
7
+
8
+ ### Features
9
+
10
+ * add export for react-native ([4098304](https://github.com/christophehurpeau/nightingale/commit/4098304ff9b6665930b7316fe05e0baf0b2e3fe5))
11
+
12
+ Version bump for dependency: nightingale-levels
13
+
14
+
6
15
  ## [16.0.0](https://github.com/christophehurpeau/nightingale/compare/v15.0.0...v16.0.0) (2025-03-30)
7
16
 
8
17
  ### ⚠ BREAKING CHANGES
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nightingale-types",
3
- "version": "16.0.0",
3
+ "version": "17.0.0",
4
4
  "description": "Nightingale types for typescript",
5
5
  "keywords": [
6
6
  "logger"
@@ -15,7 +15,7 @@
15
15
  "homepage": "https://github.com/christophehurpeau/nightingale",
16
16
  "type": "module",
17
17
  "engines": {
18
- "node": ">=20.9.0"
18
+ "node": ">=20.11.0"
19
19
  },
20
20
  "sideEffects": false,
21
21
  "main": "./dist/index-node20.mjs",
@@ -29,6 +29,9 @@
29
29
  "node": {
30
30
  "import": "./dist/index-node20.mjs"
31
31
  },
32
+ "react-native": {
33
+ "import": "./dist/index-browser.es.js"
34
+ },
32
35
  "browser": {
33
36
  "import": "./dist/index-browser.es.js"
34
37
  }
@@ -42,7 +45,7 @@
42
45
  "build": "yarn clean:build && rollup --config rollup.config.mjs && yarn run build:definitions",
43
46
  "build:definitions": "tsc -p tsconfig.json",
44
47
  "clean": "yarn clean:build",
45
- "clean:build": "pob-babel-clean-out dist",
48
+ "clean:build": "pob-esbuild-clean-out dist",
46
49
  "lint": "yarn run lint:eslint",
47
50
  "lint:eslint": "yarn ../.. run eslint --quiet packages/nightingale-types",
48
51
  "watch": "yarn clean:build && rollup --config rollup.config.mjs --watch"
@@ -57,7 +60,7 @@
57
60
  ]
58
61
  },
59
62
  "pob": {
60
- "bundler": "rollup-babel",
63
+ "bundler": "rollup-esbuild",
61
64
  "entries": [
62
65
  "index"
63
66
  ],
@@ -69,16 +72,15 @@
69
72
  {
70
73
  "target": "browser"
71
74
  }
72
- ]
75
+ ],
76
+ "typescript": true
73
77
  },
74
78
  "prettier": "@pob/root/prettier-config",
75
79
  "dependencies": {
76
- "nightingale-levels": "16.0.0"
80
+ "nightingale-levels": "17.0.0"
77
81
  },
78
82
  "devDependencies": {
79
- "@babel/core": "7.26.10",
80
- "@babel/preset-env": "7.26.9",
81
- "pob-babel": "43.4.0",
82
- "typescript": "5.8.2"
83
+ "@pob/rollup-esbuild": "6.7.0",
84
+ "typescript": "5.9.2"
83
85
  }
84
86
  }