nightingale-level-names 14.0.0 → 15.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 CHANGED
@@ -1,8 +1,29 @@
1
- # Change Log
1
+ # Changelog
2
2
 
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
+ ## [15.0.0](https://github.com/christophehurpeau/nightingale/compare/v14.2.1...v15.0.0) (2023-12-25)
7
+
8
+
9
+ ### ⚠ BREAKING CHANGES
10
+
11
+ * update babel and drop browser modern version
12
+
13
+ ### Features
14
+
15
+ * update babel and drop browser modern version ([5c76abc](https://github.com/christophehurpeau/nightingale/commit/5c76abc8bfb595a617fc4c8b795dae7e674ea664))
16
+
17
+
18
+
19
+
20
+ ## [14.2.0](https://github.com/christophehurpeau/nightingale/compare/v14.1.0...v14.2.0) (2023-11-04)
21
+
22
+ Note: no notable changes
23
+
24
+
25
+
26
+
6
27
  ## [14.0.0](https://github.com/christophehurpeau/nightingale/compare/v13.0.0...v14.0.0) (2023-06-30)
7
28
 
8
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nightingale-level-names",
3
- "version": "14.0.0",
3
+ "version": "15.0.0",
4
4
  "description": "Nightingale level values to level names",
5
5
  "keywords": [
6
6
  "logger"
@@ -21,23 +21,25 @@
21
21
  "types": "./lib/index.d.ts",
22
22
  "exports": {
23
23
  ".": {
24
+ "types": "./lib/index.d.ts",
24
25
  "import": "./lib/index.js",
25
26
  "require": "./lib/index.cjs"
26
27
  },
27
28
  "./package.json": "./package.json"
28
29
  },
29
30
  "sideEffects": false,
31
+ "files": [
32
+ "lib"
33
+ ],
30
34
  "scripts": {
31
35
  "build": "yarn run build:definitions",
32
36
  "build:definitions": "tsc --lib esnext --noEmit --skipLibCheck ./lib/index.d.ts",
33
- "clean:build": "true",
34
37
  "lint": "yarn run lint:eslint",
35
38
  "lint:eslint": "yarn ../.. run eslint --report-unused-disable-directives --resolve-plugins-relative-to . --quiet packages/nightingale-level-names"
36
39
  },
37
40
  "prettier": "@pob/root/prettier-config",
38
41
  "pob": {},
39
42
  "devDependencies": {
40
- "typescript": "5.1.6"
41
- },
42
- "gitHead": "bc20e0f093a4fecd4d87f9374f6dbc375c09c25e"
43
- }
43
+ "typescript": "5.3.3"
44
+ }
45
+ }
package/.editorconfig DELETED
@@ -1,13 +0,0 @@
1
- # EditorConfig helps developers define and maintain consistent
2
- # coding styles between different editors and IDEs
3
- # http://editorconfig.org
4
-
5
- root = true
6
-
7
- [*]
8
- indent_style = space
9
- indent_size = 2
10
- end_of_line = lf
11
- charset = utf-8
12
- trim_trailing_whitespace = true
13
- insert_final_newline = true
package/.eslintrc.json DELETED
@@ -1,5 +0,0 @@
1
- {
2
- "root": true,
3
- "extends": ["@pob/eslint-config/root-module"],
4
- "ignorePatterns": ["*.d.ts"]
5
- }