Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: unjs/consola
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.11.3
Choose a base ref
...
head repository: unjs/consola
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.12.0
Choose a head ref
  • 7 commits
  • 8 files changed
  • 5 contributors

Commits on Jan 28, 2020

  1. chore: add screenshot

    atinux authored Jan 28, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    806366f View commit details

Commits on Feb 9, 2020

  1. chore(readme): fix typo (#91)

    papb authored Feb 9, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9a82d5e View commit details

Commits on May 7, 2020

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4a08ef0 View commit details
  2. chore(deps): update devdependency chalk to v4 (#93)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored May 7, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    67ead66 View commit details
  3. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a331369 View commit details
  4. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    5a4c4f3 View commit details
  5. chore(release): 2.12.0

    atinux committed May 7, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    5746723 View commit details
Showing with 2,295 additions and 1,706 deletions.
  1. +7 −0 CHANGELOG.md
  2. +6 −2 README.md
  3. +32 −24 package.json
  4. +1 −0 src/index.js
  5. +10 −0 src/logLevels.js
  6. +13 −11 src/types.js
  7. +68 −6 types/consola.d.ts
  8. +2,158 −1,663 yarn.lock
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [2.12.0](https://github.com/nuxt/consola/compare/v2.11.3...v2.12.0) (2020-05-07)


### Features

* **types:** add missing typescript definitions for reporters ([#94](https://github.com/nuxt/consola/issues/94)) ([4a08ef0](https://github.com/nuxt/consola/commit/4a08ef02bc48ddc887f2b91713520eda50793a27))

### [2.11.3](https://github.com/nuxt/consola/compare/v2.11.2...v2.11.3) (2019-12-31)


8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@
- Browser support
- Pause/Resume support
- Mocking support
- Spam preventation by throttling logs
- Spam prevention by throttling logs

## Installation

@@ -48,7 +48,11 @@ consola.info('Reporter: Some info')
consola.error(new Error('Foo'))
```

NOTE: Alternatively, you can import consola from source. But don't forget to whitelist it for transpilation:
Will display in the terminal:

![Screenshot 2020-01-28 at 14 15 15](https://user-images.githubusercontent.com/904724/73267133-af6b2f00-41d8-11ea-9f16-4a8243d19c43.png)

**NOTE:** Alternatively, you can import consola from source. But don't forget to whitelist it for transpilation:

```js
import consola from 'consola/src/node'
56 changes: 32 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "consola",
"version": "2.11.3",
"version": "2.12.0",
"description": "Elegant Console Logger for Node.js and Browser",
"license": "MIT",
"repository": "nuxt/consola",
@@ -34,39 +34,47 @@
"unified",
"winston"
],
"contributes": [
"Pooya Parsa <pooya@pi0.ir>",
"Clark Du (@clarkdo)",
"@pimlie <pimlie@hotmail.com>",
"Sébastien Chopin <seb@orion.sh>"
"contributors": [
{
"name": "Pooya Parsa <pooya@pi0.ir>"
},
{
"name": "Clark Du (@clarkdo)"
},
{
"name": "@pimlie <pimlie@hotmail.com>"
},
{
"name": "Sébastien Chopin <@Atinux>"
}
],
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"benchmark": "^2.1.4",
"bili": "^4.8.1",
"chalk": "^3.0.0",
"dayjs": "^1.8.18",
"bili": "^4.10.0",
"chalk": "^4.0.0",
"dayjs": "^1.8.26",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-node": "^11.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"esm": "^3.2.25",
"figures": "^3.1.0",
"jest": "^24.9.0",
"figures": "^3.2.0",
"jest": "^26.0.1",
"lodash": "^4.17.15",
"sentencer": "^0.2.0",
"serve": "^11.2.0",
"standard-version": "^7.0.1",
"sentencer": "^0.2.1",
"serve": "^11.3.0",
"standard-version": "^8.0.0",
"std-env": "^2.2.1",
"string-width": "^4.2.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.4",
"ts-node": "^8.10.1",
"typescript": "^3.8.3",
"winston": "^3.2.1"
}
}
1 change: 1 addition & 0 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export { default as Consola } from './consola'
export { default as Types } from './types'
export { LogLevel } from './logLevels'
export { isLogObj } from './utils'
export { assignGlobalConsola } from './utils/global'

10 changes: 10 additions & 0 deletions src/logLevels.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export const LogLevel = {}
LogLevel[LogLevel.Fatal = 0] = 'Fatal'
LogLevel[LogLevel.Error = 0] = 'Error'
LogLevel[LogLevel.Warn = 1] = 'Warn'
LogLevel[LogLevel.Log = 2] = 'Log'
LogLevel[LogLevel.Info = 3] = 'Info'
LogLevel[LogLevel.Success = 3] = 'Success'
LogLevel[LogLevel.Debug = 4] = 'Debug'
LogLevel[LogLevel.Trace = 5] = 'Trace'
LogLevel[LogLevel.Silent = Infinity] = 'Silent'
24 changes: 13 additions & 11 deletions src/types.js
Original file line number Diff line number Diff line change
@@ -1,44 +1,46 @@
import { LogLevel } from './logLevels'

export default {
// Level 0
fatal: {
level: 0
level: LogLevel.Fatal
},
error: {
level: 0
level: LogLevel.Error
},
// Level 1
warn: {
level: 1
level: LogLevel.Warn
},
// Level 2
log: {
level: 2
level: LogLevel.Log
},
// Level 3
info: {
level: 3
level: LogLevel.Info
},
success: {
level: 3
level: LogLevel.Success
},
// Level 4
debug: {
level: 4
level: LogLevel.Debug
},
// Level 5
trace: {
level: 5
level: LogLevel.Trace
},
// Silent
silent: {
level: Infinity
level: LogLevel.Silent
},

// Legacy
ready: {
level: 3
level: LogLevel.Info
},
start: {
level: 3
level: LogLevel.Info
}
}
74 changes: 68 additions & 6 deletions types/consola.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
import { InspectOptions } from 'util';

export enum LogLevel {
Fatal= 0,
Error= 0,
Warn= 1,
Log= 2,
Info= 3,
Success= 3,
Debug= 4,
Trace= 5,
Silent= Infinity,
}

export interface ConsolaLogObject {
level?: number,
level?: LogLevel,
tag?: string,
type?: string,
message?: string,
additional?: string | string[],
args?: any[],
date?: Date,
}

type ConsolaMock = (...args: any) => void
@@ -13,8 +28,8 @@ type ConsolaMockFn = (type: string, defaults: ConsolaLogObject) => ConsolaMock

export interface ConsolaReporterArgs {
async: boolean,
stdout: any,
stderr: any,
stdout: NodeJS.WritableStream,
stderr: NodeJS.WritableStream,
}

export interface ConsolaReporter {
@@ -24,7 +39,7 @@ export interface ConsolaReporter {
export interface ConsolaOptions {
reporters?: ConsolaReporter[],
types?: { [type: string]: ConsolaLogObject },
level?: number,
level?: LogLevel,
defaults?: ConsolaLogObject,
async?: boolean,
stdout?: any,
@@ -36,7 +51,7 @@ export interface ConsolaOptions {
export declare class Consola {
constructor(options: ConsolaOptions)

level: number
level: LogLevel
readonly stdout: any
readonly stderr: any

@@ -87,8 +102,55 @@ export declare class Consola {
mock(mockFn: ConsolaMockFn): any
}

export interface BasicReporterOptions {
dateFormat?: string;
formatOptions?: InspectOptions;
}

export declare class BasicReporter implements ConsolaReporter {
protected options: BasicReporterOptions;

constructor(options?: BasicReporterOptions);

public log(logObj: ConsolaLogObject, args: ConsolaReporterArgs): void;

protected formatStack(stack: string): string;
protected formatArgs(args: any[]): string;
protected formatDate(date: Date): string;
protected filterAndJoin(arr: Array<string | undefined>): string;
protected formatLogObj(logObj: ConsolaLogObject): string;
}

export interface FancyReporterOptions extends BasicReporterOptions{
secondaryColor?: string;
}

export declare class FancyReporter extends BasicReporter {
constructor(options?: FancyReporterOptions);

protected formatType(logObj: ConsolaLogObject): void;
}

export type BrowserReporterOptions = {};

export declare class BrowserReporter implements ConsolaReporter {
log: (logObj: ConsolaLogObject, args: ConsolaReporterArgs) => void
public log(logObj: ConsolaLogObject, args: ConsolaReporterArgs): void;
}

export type JSONReporterOptions = {
stream?: NodeJS.WritableStream;
};

export declare class JSONReporter implements ConsolaReporter {
constructor(options?: JSONReporterOptions);
public log(logObj: ConsolaLogObject, args: ConsolaReporterArgs): void;
}

export type Winston = any;

export declare class WinstonReporter implements ConsolaReporter {
constructor(logger?: Winston);
public log(logObj: ConsolaLogObject, args: ConsolaReporterArgs): void;
}

declare const consolaGlobalInstance: Consola;
Loading