@stone-js/service-container 0.8.8 → 0.8.9
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 +2 -2
- package/dist/Container.d.ts +3 -3
- package/dist/errors/ContainerError.d.ts +1 -1
- package/dist/index.d.ts +9 -9
- package/dist/models/Binding.d.ts +1 -1
- package/dist/models/Factory.d.ts +2 -2
- package/dist/models/Instance.d.ts +2 -2
- package/dist/models/ResolverBinding.d.ts +2 -2
- package/dist/models/Singleton.d.ts +2 -2
- package/package.json +1 -1
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://
|
|
345
|
+
- [API](https://stonejs.dev/api)
|
|
346
346
|
|
|
347
347
|
## Contributing
|
|
348
348
|
|
|
349
|
-
See [Contributing Guide](https://github.com/stone-foundation/stone-js-
|
|
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)
|
package/dist/Container.d.ts
CHANGED
|
@@ -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
|
*
|
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';
|
package/dist/models/Binding.d.ts
CHANGED
package/dist/models/Factory.d.ts
CHANGED
|
@@ -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 { 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