nightingale-logger 14.1.0 → 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 CHANGED
@@ -1,8 +1,16 @@
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
+ ## [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-levels
11
+ Version bump for dependency: nightingale-types
12
+
13
+
6
14
  ## [14.1.0](https://github.com/christophehurpeau/nightingale/compare/v14.0.2...v14.1.0) (2023-07-27)
7
15
 
8
16
  **Note:** Version bump only for package nightingale-logger
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nightingale-logger",
3
- "version": "14.1.0",
3
+ "version": "14.2.0",
4
4
  "description": "Logger for browser and node",
5
5
  "keywords": [
6
6
  "nightingale"
@@ -46,6 +46,10 @@
46
46
  }
47
47
  },
48
48
  "sideEffects": false,
49
+ "files": [
50
+ "src",
51
+ "dist"
52
+ ],
49
53
  "scripts": {
50
54
  "build": "yarn clean:build && rollup --config rollup.config.mjs && yarn run build:definitions",
51
55
  "build:definitions": "tsc -p tsconfig.json",
@@ -77,14 +81,13 @@
77
81
  },
78
82
  "dependencies": {
79
83
  "@types/node": ">=18.0.0",
80
- "nightingale-levels": "14.1.0",
81
- "nightingale-types": "14.1.0"
84
+ "nightingale-levels": "14.2.0",
85
+ "nightingale-types": "14.2.0"
82
86
  },
83
87
  "devDependencies": {
84
- "@babel/core": "7.22.9",
85
- "@babel/preset-env": "7.22.9",
86
- "pob-babel": "36.2.0",
87
- "typescript": "5.1.6"
88
- },
89
- "gitHead": "fa6fa6109188db75b1b0e6a7ad5d6ae607a26711"
90
- }
88
+ "@babel/core": "7.23.2",
89
+ "@babel/preset-env": "7.23.2",
90
+ "pob-babel": "36.4.4",
91
+ "typescript": "5.2.2"
92
+ }
93
+ }
@@ -7,6 +7,9 @@
7
7
  "plugins": ["@typescript-eslint"],
8
8
  "extends": ["@pob/eslint-config-typescript"],
9
9
  "ignorePatterns": ["*.d.ts"],
10
+ "rules": {
11
+ "@typescript-eslint/max-params": "warn"
12
+ },
10
13
  "overrides": [
11
14
  {
12
15
  "files": ["**/*.test.ts", "__tests__/**/*.ts"],
package/.doclets.yml DELETED
@@ -1,5 +0,0 @@
1
- files:
2
- - lib-node6/index.js
3
- packageJson: package.json
4
- articles:
5
- - Overview: README.md
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", "/dist"]
5
- }
package/AUTHORS DELETED
@@ -1 +0,0 @@
1
- Christophe Hurpeau <christophe@hurpeau.com>