nightingale-level-names 12.1.1 → 13.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.
- package/CHANGELOG.md +30 -0
- package/README.md +3 -0
- package/package.json +7 -10
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
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
|
+
# [13.0.0](https://github.com/christophehurpeau/nightingale/compare/v12.1.4...v13.0.0) (2022-11-19)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Code Refactoring
|
|
10
|
+
|
|
11
|
+
* drop node 14 and cjs ([9a8ca06](https://github.com/christophehurpeau/nightingale/commit/9a8ca064449ddc0d69e26543e21c2d522536c50a))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* build for node 16 ([30ae3e9](https://github.com/christophehurpeau/nightingale/commit/30ae3e9c455dbad793c2f704b9d860069dc80c32))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### BREAKING CHANGES
|
|
20
|
+
|
|
21
|
+
* dropped node 14 and cjs
|
|
22
|
+
* drop node 14
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
## [12.1.4](https://github.com/christophehurpeau/nightingale/compare/v12.1.3...v12.1.4) (2022-02-05)
|
|
29
|
+
|
|
30
|
+
**Note:** Version bump only for package nightingale-level-names
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
## [12.1.1](https://github.com/christophehurpeau/nightingale/compare/v12.1.0...v12.1.1) (2022-01-01)
|
|
7
37
|
|
|
8
38
|
|
package/README.md
CHANGED
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
|
|
9
9
|
<p align="center">
|
|
10
10
|
<a href="https://npmjs.org/package/nightingale-level-names"><img src="https://img.shields.io/npm/v/nightingale-level-names.svg?style=flat-square"></a>
|
|
11
|
+
<a href="https://npmjs.org/package/nightingale-level-names"><img src="https://img.shields.io/npm/dw/nightingale-level-names.svg?style=flat-square"></a>
|
|
12
|
+
<a href="https://npmjs.org/package/nightingale-level-names"><img src="https://img.shields.io/node/v/nightingale-level-names.svg?style=flat-square"></a>
|
|
13
|
+
<a href="https://npmjs.org/package/nightingale-level-names"><img src="https://img.shields.io/npm/types/nightingale-level-names.svg?style=flat-square"></a>
|
|
11
14
|
</p>
|
|
12
15
|
|
|
13
16
|
## Install
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nightingale-level-names",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.0.0",
|
|
4
4
|
"description": "Nightingale level values to level names",
|
|
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": "
|
|
18
|
+
"node": ">=16.0.0"
|
|
19
19
|
},
|
|
20
20
|
"main": "./lib/index.cjs",
|
|
21
21
|
"types": "./lib/index.d.ts",
|
|
@@ -30,17 +30,14 @@
|
|
|
30
30
|
"scripts": {
|
|
31
31
|
"build": "yarn run build:definitions",
|
|
32
32
|
"build:definitions": "tsc --lib esnext --noEmit --skipLibCheck ./lib/index.d.ts",
|
|
33
|
+
"clean:build": "true",
|
|
33
34
|
"lint": "yarn run lint:eslint",
|
|
34
|
-
"lint:eslint": "
|
|
35
|
-
},
|
|
36
|
-
"prettier": {
|
|
37
|
-
"trailingComma": "all",
|
|
38
|
-
"singleQuote": true,
|
|
39
|
-
"arrowParens": "always"
|
|
35
|
+
"lint:eslint": "yarn ../.. run eslint --report-unused-disable-directives --resolve-plugins-relative-to . --quiet packages/nightingale-level-names"
|
|
40
36
|
},
|
|
37
|
+
"prettier": "@pob/root/prettier-config",
|
|
41
38
|
"pob": {},
|
|
42
39
|
"devDependencies": {
|
|
43
|
-
"typescript": "4.
|
|
40
|
+
"typescript": "4.9.3"
|
|
44
41
|
},
|
|
45
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "52cf7e3c8762a07891da9dde497ec03298c15654"
|
|
46
43
|
}
|