@andrew_l/ioc 0.2.18 → 0.2.19

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.
Files changed (2) hide show
  1. package/README.md +8 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,8 +1,7 @@
1
1
  # Inversion of Control (IoC) Toolkit
2
2
 
3
- ![license](https://img.shields.io/npm/l/%40andrew_l%2Fioc)
4
- ![npm version](https://img.shields.io/npm/v/%40andrew_l%2Fioc)
5
- ![npm bundle size](https://img.shields.io/bundlephobia/minzip/%40andrew_l%2Fioc)
3
+ [![npm version][npm-version-src]][npm-version-href]
4
+ ![license][license-src]
6
5
 
7
6
  A simple and flexible Inversion of Control (IoC) container to help set up and manage services in your application. This toolkit automates the process of importing and registering services, ensuring that dependencies are injected properly before running your application code.
8
7
 
@@ -70,3 +69,9 @@ export function createUser() {
70
69
  2. **Auto-import Services:** Automatically imports services from your specified directory, reducing boilerplate and manual imports.
71
70
  3. **Flexible and Customizable:** Easily configure paths and types, making it adaptable to various project structures.
72
71
  4. **Improved Developer Experience:** Supports TypeScript for type generation.
72
+
73
+ <!-- Badges -->
74
+
75
+ [npm-version-src]: https://img.shields.io/npm/v/@andrew_l/ioc?style=flat
76
+ [npm-version-href]: https://npmjs.com/package/@andrew_l/ioc
77
+ [license-src]: https://img.shields.io/npm/l/@andrew_l/ioc?style=flat
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@andrew_l/ioc",
3
- "version": "0.2.18",
3
+ "version": "0.2.19",
4
4
  "description": "Pretty simple IOC Container.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -34,7 +34,7 @@
34
34
  "vitest": "^2.1.3"
35
35
  },
36
36
  "dependencies": {
37
- "@andrew_l/toolkit": "0.2.18"
37
+ "@andrew_l/toolkit": "0.2.19"
38
38
  },
39
39
  "scripts": {
40
40
  "build": "unbuild",