@stone-js/service-container 0.8.8 → 0.8.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -342,11 +342,11 @@ Explore the full documentation: [https://stonejs.dev](https://stonejs.dev)
342
342
 
343
343
  ## API documentation
344
344
 
345
- - [API](https://github.com/stone-foundation/stone-js-service-container/blob/main/docs/modules.md)
345
+ - [API](https://stonejs.dev/api)
346
346
 
347
347
  ## Contributing
348
348
 
349
- See [Contributing Guide](https://github.com/stone-foundation/stone-js-service-container/blob/main/CONTRIBUTING.md).
349
+ See [Contributing Guide](https://github.com/stone-foundation/stone-js-framework/blob/main/CONTRIBUTING.md).
350
350
 
351
351
  ## Credits
352
352
  - [Laravel Service Container](https://github.com/illuminate/container)
@@ -1,6 +1,6 @@
1
- import { Proxiable } from './Proxiable';
2
- import { Binding } from './models/Binding';
3
- import { BindingKey, BindingValue, Resolver, IContainer } from './declarations';
1
+ import { Proxiable } from './Proxiable.js';
2
+ import { Binding } from './models/Binding.js';
3
+ import { BindingKey, BindingValue, Resolver, IContainer } from './declarations.js';
4
4
  /**
5
5
  * Class representing a Container.
6
6
  *
@@ -1,4 +1,4 @@
1
- import { BindingKey } from '../declarations';
1
+ import { BindingKey } from '../declarations.js';
2
2
  /**
3
3
  * Class representing a ContainerError.
4
4
  *
package/dist/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
- export * from './Container';
2
- export * from './Proxiable';
3
- export * from './declarations';
4
- export * from './errors/ContainerError';
5
- export * from './models/Binding';
6
- export * from './models/Factory';
7
- export * from './models/Instance';
8
- export * from './models/ResolverBinding';
9
- export * from './models/Singleton';
1
+ export * from './Container.js';
2
+ export * from './Proxiable.js';
3
+ export * from './declarations.js';
4
+ export * from './errors/ContainerError.js';
5
+ export * from './models/Binding.js';
6
+ export * from './models/Factory.js';
7
+ export * from './models/Instance.js';
8
+ export * from './models/ResolverBinding.js';
9
+ export * from './models/Singleton.js';
@@ -1,4 +1,4 @@
1
- import { BindingValue, IContainer, IBinding } from '../declarations';
1
+ import { BindingValue, IContainer, IBinding } from '../declarations.js';
2
2
  /**
3
3
  * Abstract class representing a Binding.
4
4
  *
@@ -1,5 +1,5 @@
1
- import { ResolverBinding } from './ResolverBinding';
2
- import { BindingValue, IContainer } from '../declarations';
1
+ import { ResolverBinding } from './ResolverBinding.js';
2
+ import { BindingValue, IContainer } from '../declarations.js';
3
3
  /**
4
4
  * Class representing a Factory.
5
5
  *
@@ -1,5 +1,5 @@
1
- import { Binding } from './Binding';
2
- import { BindingValue, IContainer } from '../declarations';
1
+ import { Binding } from './Binding.js';
2
+ import { BindingValue, IContainer } from '../declarations.js';
3
3
  /**
4
4
  * Class representing an Instance.
5
5
  *
@@ -1,5 +1,5 @@
1
- import { Binding } from './Binding';
2
- import { BindingValue, Resolver } from '../declarations';
1
+ import { Binding } from './Binding.js';
2
+ import { BindingValue, Resolver } from '../declarations.js';
3
3
  /**
4
4
  * Class representing a ResolverBinding.
5
5
  *
@@ -1,5 +1,5 @@
1
- import { ResolverBinding } from './ResolverBinding';
2
- import { BindingValue, IContainer } from '../declarations';
1
+ import { ResolverBinding } from './ResolverBinding.js';
2
+ import { BindingValue, IContainer } from '../declarations.js';
3
3
  /**
4
4
  * Class representing a Singleton.
5
5
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stone-js/service-container",
3
- "version": "0.8.8",
3
+ "version": "0.8.10",
4
4
  "description": "Javascript/Typescript IoC Service Container with proxy resolver and destructuring injection",
5
5
  "author": "Mr. Stone <evensstone@gmail.com>",
6
6
  "license": "MIT",