@travetto/di 3.0.0-rc.22 → 3.0.0-rc.24

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 +4 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -6,6 +6,10 @@
6
6
  **Install: @travetto/di**
7
7
  ```bash
8
8
  npm install @travetto/di
9
+
10
+ # or
11
+
12
+ yarn add @travetto/di
9
13
  ```
10
14
 
11
15
  [Dependency injection](https://en.wikipedia.org/wiki/Dependency_injection) is a framework primitive. When used in conjunction with automatic file scanning, it provides for handling of application dependency wiring. Due to the nature of [Typescript](https://typescriptlang.org) and type erasure of interfaces, dependency injection only supports `class`es as a type signifier. The primary goal of dependency injection is to allow for separation of concerns of object creation and it's usage.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/di",
3
- "version": "3.0.0-rc.22",
3
+ "version": "3.0.0-rc.24",
4
4
  "description": "Dependency registration/management and injection support.",
5
5
  "keywords": [
6
6
  "ast-transformations",
@@ -27,10 +27,10 @@
27
27
  "directory": "module/di"
28
28
  },
29
29
  "dependencies": {
30
- "@travetto/registry": "^3.0.0-rc.22"
30
+ "@travetto/registry": "^3.0.0-rc.24"
31
31
  },
32
32
  "peerDependencies": {
33
- "@travetto/transformer": "^3.0.0-rc.21"
33
+ "@travetto/transformer": "^3.0.0-rc.22"
34
34
  },
35
35
  "peerDependenciesMeta": {
36
36
  "@travetto/transformer": {