nightingale 12.1.1 → 12.1.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.
- package/CHANGELOG.md +11 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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
|
+
## [12.1.2](https://github.com/christophehurpeau/nightingale/compare/v12.1.1...v12.1.2) (2022-01-02)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* main esm for jest which supports esm but not exports ([98789fa](https://github.com/christophehurpeau/nightingale/commit/98789fa490e723840fccc443584189b6905d871b))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [12.1.1](https://github.com/christophehurpeau/nightingale/compare/v12.1.0...v12.1.1) (2022-01-01)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nightingale",
|
|
3
|
-
"version": "12.1.
|
|
3
|
+
"version": "12.1.2",
|
|
4
4
|
"description": "Logger for browser and node",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"logger"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"not safari < 10",
|
|
25
25
|
"not ios_saf < 10"
|
|
26
26
|
],
|
|
27
|
-
"main": "./dist/index-node14.
|
|
27
|
+
"main": "./dist/index-node14.mjs",
|
|
28
28
|
"types": "./dist/index.d.ts",
|
|
29
29
|
"module": "./dist/index-browser.es.js",
|
|
30
30
|
"browser": "./dist/index-browser.es.js",
|
|
@@ -91,17 +91,17 @@
|
|
|
91
91
|
},
|
|
92
92
|
"dependencies": {
|
|
93
93
|
"@types/node": ">=14.0.0",
|
|
94
|
-
"nightingale-levels": "12.1.
|
|
95
|
-
"nightingale-logger": "12.1.
|
|
96
|
-
"nightingale-types": "12.1.
|
|
94
|
+
"nightingale-levels": "12.1.2",
|
|
95
|
+
"nightingale-logger": "12.1.2",
|
|
96
|
+
"nightingale-types": "12.1.2"
|
|
97
97
|
},
|
|
98
98
|
"devDependencies": {
|
|
99
99
|
"@babel/core": "7.16.7",
|
|
100
100
|
"@babel/preset-env": "7.16.7",
|
|
101
101
|
"babel-preset-modern-browsers": "15.0.2",
|
|
102
|
-
"nightingale-string": "12.1.
|
|
102
|
+
"nightingale-string": "12.1.2",
|
|
103
103
|
"pob-babel": "29.6.1",
|
|
104
104
|
"typescript": "4.5.4"
|
|
105
105
|
},
|
|
106
|
-
"gitHead": "
|
|
106
|
+
"gitHead": "f2a782d74a3659d048817c520758cb7054671415"
|
|
107
107
|
}
|