nightingale-types 13.0.0 → 14.0.1

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
@@ -3,6 +3,34 @@
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.1](https://github.com/christophehurpeau/nightingale/compare/v14.0.0...v14.0.1) (2023-06-30)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * add missing type in exports for latest typescript ([8897fd6](https://github.com/christophehurpeau/nightingale/commit/8897fd6fcbd25975482fd1549277b73ed725e53c))
12
+
13
+
14
+
15
+ ## [14.0.0](https://github.com/christophehurpeau/nightingale/compare/v13.0.0...v14.0.0) (2023-06-30)
16
+
17
+
18
+ ### ⚠ BREAKING CHANGES
19
+
20
+ * **deps:** require node 18
21
+ * requires node 18
22
+
23
+ ### Features
24
+
25
+ * requires node 18 ([4452b11](https://github.com/christophehurpeau/nightingale/commit/4452b116188e58c293be85e462e04922f7ad51f0))
26
+
27
+
28
+ ### Miscellaneous Chores
29
+
30
+ * **deps:** update dependency @pob/root to v8 ([#760](https://github.com/christophehurpeau/nightingale/issues/760)) ([22dc3cc](https://github.com/christophehurpeau/nightingale/commit/22dc3cceabdfd465d04ee36fec8fdac31febab69))
31
+
32
+
33
+
6
34
  # [13.0.0](https://github.com/christophehurpeau/nightingale/compare/v12.1.4...v13.0.0) (2022-11-19)
7
35
 
8
36
 
@@ -1,2 +1,2 @@
1
1
  export { Level } from 'nightingale-levels';
2
- //# sourceMappingURL=index-node16.mjs.map
2
+ //# sourceMappingURL=index-node18.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index-node18.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nightingale-types",
3
- "version": "13.0.0",
3
+ "version": "14.0.1",
4
4
  "description": "Nightingale types for typescript",
5
5
  "keywords": [
6
6
  "logger"
@@ -15,24 +15,27 @@
15
15
  "homepage": "https://github.com/christophehurpeau/nightingale",
16
16
  "type": "module",
17
17
  "engines": {
18
- "node": ">=16.0.0"
18
+ "node": ">=18.12.0"
19
19
  },
20
- "browserslist": [
21
- "defaults",
22
- "> 0.2%",
23
- "not ie < 12",
24
- "not safari < 10",
25
- "not ios_saf < 10"
26
- ],
27
- "main": "./dist/index-node16.mjs",
20
+ "browserslist": {
21
+ "production": [
22
+ "defaults",
23
+ "> 0.2%",
24
+ "not ie < 12",
25
+ "not safari < 10",
26
+ "not ios_saf < 10"
27
+ ]
28
+ },
29
+ "main": "./dist/index-node18.mjs",
28
30
  "types": "./dist/definitions/index.d.ts",
29
31
  "module": "./dist/index-browser.es.js",
30
32
  "browser": "./dist/index-browser.es.js",
31
33
  "exports": {
32
34
  "./package.json": "./package.json",
33
35
  ".": {
36
+ "type": "./dist/definitions/index.d.ts",
34
37
  "node": {
35
- "import": "./dist/index-node16.mjs"
38
+ "import": "./dist/index-node18.mjs"
36
39
  },
37
40
  "browser": {
38
41
  "browser:modern": {
@@ -45,7 +48,7 @@
45
48
  "sideEffects": false,
46
49
  "scripts": {
47
50
  "build": "yarn clean:build && rollup --config rollup.config.mjs && yarn run build:definitions",
48
- "build:definitions": "tsc -p",
51
+ "build:definitions": "tsc -p tsconfig.json",
49
52
  "clean": "yarn clean:build",
50
53
  "clean:build": "pob-babel-clean-out dist",
51
54
  "lint": "yarn run lint:eslint",
@@ -57,7 +60,7 @@
57
60
  "babelEnvs": [
58
61
  {
59
62
  "target": "node",
60
- "version": "16"
63
+ "version": "18"
61
64
  },
62
65
  {
63
66
  "target": "browser",
@@ -72,14 +75,13 @@
72
75
  ]
73
76
  },
74
77
  "dependencies": {
75
- "nightingale-levels": "13.0.0"
78
+ "nightingale-levels": "14.0.1"
76
79
  },
77
80
  "devDependencies": {
78
- "@babel/core": "7.20.2",
79
- "@babel/preset-env": "7.20.2",
80
- "babel-preset-modern-browsers": "15.0.2",
81
- "pob-babel": "35.3.0",
82
- "typescript": "4.9.3"
81
+ "@babel/core": "7.22.5",
82
+ "@babel/preset-env": "7.22.5",
83
+ "pob-babel": "36.1.0",
84
+ "typescript": "5.1.6"
83
85
  },
84
- "gitHead": "52cf7e3c8762a07891da9dde497ec03298c15654"
86
+ "gitHead": "e012fc159ceae0db482198c3f0308e0fc6470ae1"
85
87
  }
@@ -1 +0,0 @@
1
- {"version":3,"file":"index-node16.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":""}