nightingale 14.0.0 → 14.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/package.json +7 -6
package/CHANGELOG.md CHANGED
@@ -3,6 +3,24 @@
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
+ ## [14.0.2](https://github.com/christophehurpeau/nightingale/compare/v14.0.1...v14.0.2) (2023-06-30)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * typo types for typescript exports ([1eb20e4](https://github.com/christophehurpeau/nightingale/commit/1eb20e47ea18a3d015146da4efe58c32df066e97))
12
+
13
+
14
+
15
+ ## [14.0.1](https://github.com/christophehurpeau/nightingale/compare/v14.0.0...v14.0.1) (2023-06-30)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * add missing type in exports for latest typescript ([8897fd6](https://github.com/christophehurpeau/nightingale/commit/8897fd6fcbd25975482fd1549277b73ed725e53c))
21
+
22
+
23
+
6
24
  ## [14.0.0](https://github.com/christophehurpeau/nightingale/compare/v13.0.0...v14.0.0) (2023-06-30)
7
25
 
8
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nightingale",
3
- "version": "14.0.0",
3
+ "version": "14.0.2",
4
4
  "description": "Logger for browser and node",
5
5
  "keywords": [
6
6
  "logger"
@@ -33,6 +33,7 @@
33
33
  "exports": {
34
34
  "./package.json": "./package.json",
35
35
  ".": {
36
+ "types": "./dist/definitions/index.d.ts",
36
37
  "node": {
37
38
  "import": "./dist/index-node18.mjs"
38
39
  },
@@ -76,16 +77,16 @@
76
77
  },
77
78
  "dependencies": {
78
79
  "@types/node": ">=18.0.0",
79
- "nightingale-levels": "14.0.0",
80
- "nightingale-logger": "14.0.0",
81
- "nightingale-types": "14.0.0"
80
+ "nightingale-levels": "14.0.2",
81
+ "nightingale-logger": "14.0.2",
82
+ "nightingale-types": "14.0.2"
82
83
  },
83
84
  "devDependencies": {
84
85
  "@babel/core": "7.22.5",
85
86
  "@babel/preset-env": "7.22.5",
86
- "nightingale-string": "14.0.0",
87
+ "nightingale-string": "14.0.2",
87
88
  "pob-babel": "36.1.0",
88
89
  "typescript": "5.1.6"
89
90
  },
90
- "gitHead": "bc20e0f093a4fecd4d87f9374f6dbc375c09c25e"
91
+ "gitHead": "0e7b4a98b0ea8135163c1f5f08108bbd36b1905f"
91
92
  }