Skip to content

Releases: william26/je-di

Release 0.3.0

05 Jun 12:02
Compare
Choose a tag to compare
  • Adds support for dependency arrays, allowing the use of je-di in minified scripts:
const module = jedi
  .module()
  .register('dep', 'yourname')
  .service('service1', ['dep', function (dep) {
    this.sayHello = function () {
      `Hello, ${dep}`;
    };
  }])
  .run(['service1', function (service1) {
    console.log(service1.sayHello());
  });

jedi.bootstrap(module);

// Prints "Hello, yourname"

Release 0.2.3

16 Feb 21:11
Compare
Choose a tag to compare

Patch simplifying the project structure.

Version 0.2.1

07 Feb 18:31
Compare
Choose a tag to compare
v0.2.1

0.2.1

0.1.1

31 Jan 23:07
Compare
Choose a tag to compare
Merge pull request #9 from william26/chore/version

Bump version to 0.1.1

0.1.0

31 Jan 22:47
Compare
Choose a tag to compare
Merge pull request #6 from william26/release

chore(version): bump version to 0.1.0