Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all dependencies (non-major) #469

Merged
merged 2 commits into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions lib/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,11 @@ const pkg = JSON.parse(pkgJson);

/**
* @typedef {(...args: any) => void} LogFunction
* @typedef {{ trace: LogFunction, debug: LogFunction, info: LogFunction, warn: LogFunction, error: LogFunction, fatal: LogFunction }} AbsLogger
*
* @typedef {Object} LayoutOptions
* @property {string} name - (required) layout name
* @property {string} pathname - (required) layout pathname
* @property {Console | AbsLogger} [logger] - A logger to use when provided. Can be the console object if console logging is desired but can also be any Log4j compatible logging object as well. Nothing is logged if no logger is provided. (default null)
* @property {Console | import('abslog').AbstractLogger} [logger] - A logger to use when provided. Can be the console object if console logging is desired but can also be any Log4j compatible logging object as well. Nothing is logged if no logger is provided. (default null)
* @property {LayoutContext} [context] - Options to be passed on to the internal `@podium/context` constructor. See that module for details. (default null)
* @property {LayoutClientOptions} [client] - Options to be passed on to the internal `@podium/client` constructor. See that module for details. (default null)
* @property {import("@podium/proxy").default.PodiumProxyOptions} [proxy] - Options to be passed on to the internal `@podium/proxy` constructor. See that module for details. (default null)
Expand Down Expand Up @@ -117,7 +116,7 @@ export default class PodiumLayout {
* layout.log.fatal('fatal log to the console')
* ```
*
* @type {AbsLogger}
* @type {import('abslog').AbstractLogger}
*/
log;

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@
},
"dependencies": {
"@metrics/client": "2.5.2",
"@podium/client": "5.0.7",
"@podium/client": "5.0.8",
"@podium/context": "5.0.3",
"@podium/proxy": "5.0.4",
"@podium/proxy": "5.0.6",
"@podium/schemas": "5.0.0",
"@podium/utils": "5.0.2",
"abslog": "2.4.0",
"abslog": "2.4.2",
"ajv": "8.12.0",
"lodash.merge": "4.6.2",
"objobj": "1.0.0"
Expand Down