Skip to content

Commit

Permalink
0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Silic0nS0ldier committed Apr 3, 2021
1 parent 30e2f53 commit 90f373e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.3.0] - 2021-04-03

### Changed
- Removed `esm` loader in favour of native ESM support.
- Raised minimum NodeJS version from 10 to 12.17.0.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ constructor(prefix?: string);

| Parameter | Type | Description |
| --- | --- | --- |
| prefix | <code>string</code> | Optionally annotate logs with a prefix such as the package name to identify log source. |
| prefix | string | Optionally annotate logs with a prefix such as the package name to identify log source. |

11 changes: 6 additions & 5 deletions docs/api/ts-log-adapter-gulplog.gulploglogger.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
```typescript
export declare class GulpLogLogger implements Logger
```
<b>Implements:</b> Logger
## Constructors
Expand All @@ -22,9 +23,9 @@ export declare class GulpLogLogger implements Logger
| Property | Modifiers | Type | Description |
| --- | --- | --- | --- |
| [debug](./ts-log-adapter-gulplog.gulploglogger.debug.md) | | <code>(message?: any, ...optionalParams: any[]) =&gt; void</code> | |
| [error](./ts-log-adapter-gulplog.gulploglogger.error.md) | | <code>(message?: any, ...optionalParams: any[]) =&gt; void</code> | |
| [info](./ts-log-adapter-gulplog.gulploglogger.info.md) | | <code>(message?: any, ...optionalParams: any[]) =&gt; void</code> | |
| [trace](./ts-log-adapter-gulplog.gulploglogger.trace.md) | | <code>(message?: any, ...optionalParams: any[]) =&gt; void</code> | |
| [warn](./ts-log-adapter-gulplog.gulploglogger.warn.md) | | <code>(message?: any, ...optionalParams: any[]) =&gt; void</code> | |
| [debug](./ts-log-adapter-gulplog.gulploglogger.debug.md) | | (message?: any, ...optionalParams: any\[\]) =&gt; void | |
| [error](./ts-log-adapter-gulplog.gulploglogger.error.md) | | (message?: any, ...optionalParams: any\[\]) =&gt; void | |
| [info](./ts-log-adapter-gulplog.gulploglogger.info.md) | | (message?: any, ...optionalParams: any\[\]) =&gt; void | |
| [trace](./ts-log-adapter-gulplog.gulploglogger.trace.md) | | (message?: any, ...optionalParams: any\[\]) =&gt; void | |
| [warn](./ts-log-adapter-gulplog.gulploglogger.warn.md) | | (message?: any, ...optionalParams: any\[\]) =&gt; void | |
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@userfrosting/ts-log-adapter-gulplog",
"version": "0.2.0",
"version": "0.3.0",
"description": "An adapter for the ts-log interface that pushes logging to gulplog with optional arguments JSON encoded.",
"funding": "https://opencollective.com/userfrosting",
"type": "module",
Expand Down

0 comments on commit 90f373e

Please sign in to comment.