Skip to content

Commit

Permalink
Revised build scripts to eliminate need to regenerate docs during releas
Browse files Browse the repository at this point in the history
  • Loading branch information
Silic0nS0ldier committed Apr 23, 2020
1 parent 119fe68 commit c4c6826
Show file tree
Hide file tree
Showing 10 changed files with 315 additions and 86 deletions.
3 changes: 2 additions & 1 deletion api-extractor.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@
},
"docModel": {
"enabled": true
}
},
"newlineKind": "lf"
}
20 changes: 20 additions & 0 deletions docs/api/ts-log-adapter-gulplog.gulploglogger._constructor_.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@userfrosting/ts-log-adapter-gulplog](./ts-log-adapter-gulplog.md) &gt; [GulpLogLogger](./ts-log-adapter-gulplog.gulploglogger.md) &gt; [(constructor)](./ts-log-adapter-gulplog.gulploglogger._constructor_.md)

## GulpLogLogger.(constructor)

Constructs a new instance of the `GulpLogLogger` class

<b>Signature:</b>

```typescript
constructor(prefix?: string);
```

## Parameters

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

16 changes: 2 additions & 14 deletions docs/api/ts-log-adapter-gulplog.gulploglogger.debug.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,10 @@

[Home](./index.md) &gt; [@userfrosting/ts-log-adapter-gulplog](./ts-log-adapter-gulplog.md) &gt; [GulpLogLogger](./ts-log-adapter-gulplog.gulploglogger.md) &gt; [debug](./ts-log-adapter-gulplog.gulploglogger.debug.md)

## GulpLogLogger.debug() method
## GulpLogLogger.debug property

<b>Signature:</b>

```typescript
debug(message?: any, ...optionalParams: any[]): void;
debug: (message?: any, ...optionalParams: any[]) => void;
```

## Parameters

| Parameter | Type | Description |
| --- | --- | --- |
| message | <code>any</code> | |
| optionalParams | <code>any[]</code> | |

<b>Returns:</b>

`void`

16 changes: 2 additions & 14 deletions docs/api/ts-log-adapter-gulplog.gulploglogger.error.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,10 @@

[Home](./index.md) &gt; [@userfrosting/ts-log-adapter-gulplog](./ts-log-adapter-gulplog.md) &gt; [GulpLogLogger](./ts-log-adapter-gulplog.gulploglogger.md) &gt; [error](./ts-log-adapter-gulplog.gulploglogger.error.md)

## GulpLogLogger.error() method
## GulpLogLogger.error property

<b>Signature:</b>

```typescript
error(message?: any, ...optionalParams: any[]): void;
error: (message?: any, ...optionalParams: any[]) => void;
```

## Parameters

| Parameter | Type | Description |
| --- | --- | --- |
| message | <code>any</code> | |
| optionalParams | <code>any[]</code> | |

<b>Returns:</b>

`void`

16 changes: 2 additions & 14 deletions docs/api/ts-log-adapter-gulplog.gulploglogger.info.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,10 @@

[Home](./index.md) &gt; [@userfrosting/ts-log-adapter-gulplog](./ts-log-adapter-gulplog.md) &gt; [GulpLogLogger](./ts-log-adapter-gulplog.gulploglogger.md) &gt; [info](./ts-log-adapter-gulplog.gulploglogger.info.md)

## GulpLogLogger.info() method
## GulpLogLogger.info property

<b>Signature:</b>

```typescript
info(message?: any, ...optionalParams: any[]): void;
info: (message?: any, ...optionalParams: any[]) => void;
```

## Parameters

| Parameter | Type | Description |
| --- | --- | --- |
| message | <code>any</code> | |
| optionalParams | <code>any[]</code> | |

<b>Returns:</b>

`void`

20 changes: 13 additions & 7 deletions docs/api/ts-log-adapter-gulplog.gulploglogger.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,19 @@
export declare class GulpLogLogger implements Logger
```
## Methods
## Constructors
| Method | Modifiers | Description |
| Constructor | Modifiers | Description |
| --- | --- | --- |
| [debug(message, optionalParams)](./ts-log-adapter-gulplog.gulploglogger.debug.md) | | |
| [error(message, optionalParams)](./ts-log-adapter-gulplog.gulploglogger.error.md) | | |
| [info(message, optionalParams)](./ts-log-adapter-gulplog.gulploglogger.info.md) | | |
| [trace(message, optionalParams)](./ts-log-adapter-gulplog.gulploglogger.trace.md) | | |
| [warn(message, optionalParams)](./ts-log-adapter-gulplog.gulploglogger.warn.md) | | |
| [(constructor)(prefix)](./ts-log-adapter-gulplog.gulploglogger._constructor_.md) | | Constructs a new instance of the <code>GulpLogLogger</code> class |
## Properties
| 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> | |
16 changes: 2 additions & 14 deletions docs/api/ts-log-adapter-gulplog.gulploglogger.trace.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,10 @@

[Home](./index.md) &gt; [@userfrosting/ts-log-adapter-gulplog](./ts-log-adapter-gulplog.md) &gt; [GulpLogLogger](./ts-log-adapter-gulplog.gulploglogger.md) &gt; [trace](./ts-log-adapter-gulplog.gulploglogger.trace.md)

## GulpLogLogger.trace() method
## GulpLogLogger.trace property

<b>Signature:</b>

```typescript
trace(message?: any, ...optionalParams: any[]): void;
trace: (message?: any, ...optionalParams: any[]) => void;
```

## Parameters

| Parameter | Type | Description |
| --- | --- | --- |
| message | <code>any</code> | |
| optionalParams | <code>any[]</code> | |

<b>Returns:</b>

`void`

16 changes: 2 additions & 14 deletions docs/api/ts-log-adapter-gulplog.gulploglogger.warn.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,10 @@

[Home](./index.md) &gt; [@userfrosting/ts-log-adapter-gulplog](./ts-log-adapter-gulplog.md) &gt; [GulpLogLogger](./ts-log-adapter-gulplog.gulploglogger.md) &gt; [warn](./ts-log-adapter-gulplog.gulploglogger.warn.md)

## GulpLogLogger.warn() method
## GulpLogLogger.warn property

<b>Signature:</b>

```typescript
warn(message?: any, ...optionalParams: any[]): void;
warn: (message?: any, ...optionalParams: any[]) => void;
```

## Parameters

| Parameter | Type | Description |
| --- | --- | --- |
| message | <code>any</code> | |
| optionalParams | <code>any[]</code> | |

<b>Returns:</b>

`void`

Loading

0 comments on commit c4c6826

Please sign in to comment.