nightingale-app-console 14.0.2 → 14.2.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 +18 -1
- package/package.json +14 -11
- package/.editorconfig +0 -13
- package/.eslintrc.json +0 -5
- package/AUTHORS +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,25 @@
|
|
|
1
|
-
#
|
|
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
|
+
## [14.2.0](https://github.com/christophehurpeau/nightingale/compare/v14.1.0...v14.2.0) (2023-11-04)
|
|
7
|
+
|
|
8
|
+
Note: no notable changes
|
|
9
|
+
|
|
10
|
+
Version bump for dependency: nightingale
|
|
11
|
+
Version bump for dependency: nightingale-browser-console
|
|
12
|
+
Version bump for dependency: nightingale-console
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## [14.1.0](https://github.com/christophehurpeau/nightingale/compare/v14.0.2...v14.1.0) (2023-07-27)
|
|
16
|
+
|
|
17
|
+
**Note:** Version bump only for package nightingale-app-console
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
6
23
|
## [14.0.2](https://github.com/christophehurpeau/nightingale/compare/v14.0.1...v14.0.2) (2023-06-30)
|
|
7
24
|
|
|
8
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nightingale-app-console",
|
|
3
|
-
"version": "14.0
|
|
3
|
+
"version": "14.2.0",
|
|
4
4
|
"description": "nightingale default config and logger for app",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "Christophe Hurpeau <christophe@hurpeau.com> (https://christophe.hurpeau.com)",
|
|
@@ -44,6 +44,10 @@
|
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
46
|
"sideEffects": false,
|
|
47
|
+
"files": [
|
|
48
|
+
"src",
|
|
49
|
+
"dist"
|
|
50
|
+
],
|
|
47
51
|
"scripts": {
|
|
48
52
|
"build": "yarn clean:build && rollup --config rollup.config.mjs && yarn run build:definitions",
|
|
49
53
|
"build:definitions": "tsc -p tsconfig.json",
|
|
@@ -74,15 +78,14 @@
|
|
|
74
78
|
},
|
|
75
79
|
"dependencies": {
|
|
76
80
|
"@types/node": ">=18.0.0",
|
|
77
|
-
"nightingale": "14.0
|
|
78
|
-
"nightingale-browser-console": "14.0
|
|
79
|
-
"nightingale-console": "14.0
|
|
81
|
+
"nightingale": "14.2.0",
|
|
82
|
+
"nightingale-browser-console": "14.2.0",
|
|
83
|
+
"nightingale-console": "14.2.0"
|
|
80
84
|
},
|
|
81
85
|
"devDependencies": {
|
|
82
|
-
"@babel/core": "7.
|
|
83
|
-
"@babel/preset-env": "7.
|
|
84
|
-
"pob-babel": "36.
|
|
85
|
-
"typescript": "5.
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
}
|
|
86
|
+
"@babel/core": "7.23.2",
|
|
87
|
+
"@babel/preset-env": "7.23.2",
|
|
88
|
+
"pob-babel": "36.4.4",
|
|
89
|
+
"typescript": "5.2.2"
|
|
90
|
+
}
|
|
91
|
+
}
|
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
package/AUTHORS
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Christophe Hurpeau <christophe@hurpeau.com>
|