Skip to content

Releases: bbmoz/pretty-web-console

v0.3.0

Choose a tag to compare

@bbmoz bbmoz released this 09 Apr 23:47

<a name"0.3.0">

0.3.0 (2017-04-09)

Features

  • support bg colors via chaining (e6c5b381)

v0.2.0

Choose a tag to compare

@bbmoz bbmoz released this 09 Apr 22:54

<a name"0.2.0">

0.2.0 (2017-04-09)

Features

v0.1.0

Choose a tag to compare

@bbmoz bbmoz released this 09 Apr 22:01

<a name"0.1.0">

0.1.0 (2017-04-09)

Features

v0.0.7

Choose a tag to compare

@bbmoz bbmoz released this 09 Apr 07:34

Features

  1. Support font-style. i.e. pwc().italic().log('hi').

Misc

  1. Use camel casing for src files.
  2. Update README with new screenshot.

v0.0.6

Choose a tag to compare

@bbmoz bbmoz released this 09 Apr 05:57

Features

  1. Support font-families.
  2. Support values with hyphens or spaces, i.e. trebuchetms and linethrough

Misc

  1. Use code climate to analyze code. Add badge.
  2. Use greenkeeper for auto npm deps upgrades.
  3. Opt for yarn package manager.

v0.0.5

Choose a tag to compare

@bbmoz bbmoz released this 08 Apr 19:19

Features

  1. Support config passing.
const config = { color: 'red', weight: 'bold' }
pwc(config).log('hi')
  1. Make logs stateless.
const redLogger = pwc().color('red')
const blueLogger = pwc().color('blue')
redLogger.log('i am red')
blueLogger.log('i am blue')

v0.0.4

Choose a tag to compare

@bbmoz bbmoz released this 08 Apr 00:22

Features

  • Support text-decoration via .underline() or .decorate('underline')

Misc

  • Update example project.
  • Update README with image of example output.

v0.0.2

Choose a tag to compare

@bbmoz bbmoz released this 08 Apr 00:01

Features

  • Simplify API by removing .done(). Simply do .log() at end of chain to write to console.

v0.0.1

Choose a tag to compare

@bbmoz bbmoz released this 06 Apr 23:58

Features

  • Import 'pretty-web-console' from npmjs to create prettier browser logs.
  • Supports color, background-color, font-size, and font-weight.

Misc

  • Example project in example/.
  • Create README and dotfiles for dev work.
  • Write unit tests with ava.