Skip to content

Releases: Bruce17/dependable

Refactoring, Code Style, Bugfixes

06 Jan 12:33
Compare
Choose a tag to compare

Some overall code refactoring, code style fixes and added more unit tests.

Bugfixes:

New Feature: ES6 fat arrow support

28 Jul 07:01
Compare
Choose a tag to compare
  • Added support to register ES5 functions and ES6 fat arrow functions (thanks @calmdev! 🎉 ). Example:
// ES5
container.register('_', function() { 
  return require('lodash'); 
});

// ES6 fat arrow
container.register('_', () => require('lodash'));
  • Added missing unit tests.
  • Added missing asserts in unit tests.

1.2.7

12 Jul 08:50
Compare
Choose a tag to compare
  • update (dev) dependencies
  • update travis build tools