@rolster/invertly 1.0.0 → 1.0.1

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/package.json +1 -1
  2. package/readme.md +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rolster/invertly",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Invertly is a package that allows you to implement class mapping to identify and inject their dependencies.",
5
5
  "module": "dist/esm/index.js",
6
6
  "main": "dist/cjs/index.js",
package/readme.md CHANGED
@@ -1,16 +1,16 @@
1
- # Rolster Typescript Invertly
1
+ # Rolster Invertly
2
2
 
3
3
  Invertly is a package that allows you to implement class mapping to identify and inject their dependencies.
4
4
 
5
5
  ## Installation
6
6
 
7
7
  ```
8
- npm i @rolster/typescript-invertly
8
+ npm i @rolster/invertly
9
9
  ```
10
10
 
11
11
  ## Configuration
12
12
 
13
- You must install the `@rolster/typescript-types` to define package data types, which are configured by adding them to the `files` property of the `tsconfig.json` file.
13
+ You must install the `@rolster/types` to define package data types, which are configured by adding them to the `files` property of the `tsconfig.json` file.
14
14
 
15
15
  ```json
16
16
  {
@@ -18,7 +18,7 @@ You must install the `@rolster/typescript-types` to define package data types, w
18
18
  "emitDecoratorMetadata": true,
19
19
  "experimentalDecorators": true
20
20
  },
21
- "files": ["node_modules/@rolster/typescript-types/index.d.ts"]
21
+ "files": ["node_modules/@rolster/types/index.d.ts"]
22
22
  }
23
23
  ```
24
24