Badgee Versions Save

Browser Console Improved

v2.0.3

6 years ago
  • b188dd3777f2dce82b2c283a25c83336703964c6 : chore(package): update rollup to version 0.49.0
  • 9887c951b3cb893d8a8f64d4620c7d90df9cf3d7 : Update minify tasks with latest uglify v3.0 options syntax
  • ae7a27317fa0d2be5216ef0f9858ce8c26d4f4a7 : chore(package): update uglify-js to version 3.0.28
  • 1c9a5969b972cf4265a85a4351919cf0010e942b : Update rollup.config.js with latest options naming
  • ec05b36c8e60edcf99501a195b5e978f63b90962 : chore(package): update rollup to version 0.48.2
  • eb7aed6b9fce18e3164e2ab4626ca030df346501 : chore(package): update sinon to version 3.0.0

v2.0.2

6 years ago
  • 5ef4387 Fix unit-tests :
    • Revert uglify-js to 2.8 because it break sourcemap support
    • Fix chai API change

v2.0.1

6 years ago
  • 40ee70e : Fix compatibility with Node environment

v2.0.0

6 years ago
  • Source code converted from CoffeeScript to ES2015+rollup
  • Many rewrites and size optimization => going under 1kB \o/
  • e3f7de98 [breaking] remove most default styles
  • 9b0c796 [breaking] remove support for less used console methods

Also [breaking], since badgee is now exposed as an ES2015 module by default, If you're using in a CommonJS environment, you will need to rewrite your require calls to handle ES2015 default export. See below 👇

// before
var badgee = require('badgee');

// after
var badgee = require('badgee').default;

1.2.1

9 years ago
  • Fix #2 : breaking error on IE11.

1.2.0

9 years ago

Add filters :

  • badgee.filter.include(match) : Include only matching badges into logs
  • badgee.filter.exclude(match) : Exclude matching badges from logs
  • badgee.filter.none() : remove already defined filters.

1.1.0

9 years ago
  • Add badgee.defaultStyle() method to get/set default style properties
  • badgee.style(name) now returns the properties of an existing named style
  • Add a few built-in styles : black, blue, brown, gray, cyan, magenta, pink

1.0.2

9 years ago

Build process :

  • Browserify build now always produces minified and unminified versions
  • badgee.js file isn't minified anymore.
  • badgee.min.js file doesn't link to missing sourcemap files anymore.

Unit-tests :

  • Add unit-tests for unstylable console methods

Bug fixes :

  • Fix : unstylable console methods may not be defined when a new badgee instance is created while logging is disabled in config.

1.0.0

9 years ago

1.0.1

9 years ago

Add fallback for old browsers that doesn't support using bind() method on console object