@discordx/di
Advanced tools
Comparing version 3.1.1 to 3.2.0
@@ -1,33 +0,7 @@ | ||
## Fixed | ||
# @discordx/di | ||
- when no di method used, exception was thrown ([#943](https://github.com/discordx-ts/discordx/issues/943)) ([a85a8f](https://github.com/discordx-ts/discordx/commit/a85a8feb45d7422fe483360017e20718ef90af6d)) | ||
## 3.2.0 | ||
# [3.1.0](https://github.com/discordx-ts/discordx/releases/tag/di-3.1.0) (2023-05-05) | ||
### Minor Changes | ||
## Changed | ||
- dep update + tsyringe example ([#938](https://github.com/discordx-ts/discordx/issues/938)) ([6f0b98](https://github.com/discordx-ts/discordx/commit/6f0b98b511c5f2e5c95e318aa02d0f62b28e768a)) | ||
- update DefaultDependencyRegistryEngine.ts ([#908](https://github.com/discordx-ts/discordx/issues/908)) ([36ad1b](https://github.com/discordx-ts/discordx/commit/36ad1b545244edc748101ef85b1f8dd093debffe)) | ||
- typescript bump ([3f1b3d](https://github.com/discordx-ts/discordx/commit/3f1b3df16b964e06956e319a05c4dd8bd2997a99)) | ||
## Routine Tasks | ||
- fix tokenization injection ([#942](https://github.com/discordx-ts/discordx/issues/942)) ([1c118b](https://github.com/discordx-ts/discordx/commit/1c118bd8999d19f3bb21d307322228f4c47e39bb)) | ||
# [3.0.1](https://github.com/discordx-ts/discordx/releases/tag/di-3.0.1) (2022-08-07) | ||
## Features | ||
- added support for typedi and unified the docs ([#598](https://github.com/discordx-ts/discordx/issues/598)) ([ea8edb](https://github.com/discordx-ts/discordx/commit/ea8edb99974fc8c1604c333283272e893460777b)) | ||
## Changed | ||
- DI service rewrite (v3) ([#780](https://github.com/discordx-ts/discordx/issues/780)) ([06a049](https://github.com/discordx-ts/discordx/commit/06a049d589f86b211dd6f789015c62eb1a0fb643)) | ||
- rename myClass with clazz ([98b15b](https://github.com/discordx-ts/discordx/commit/98b15bc4638591cb945060d402f8d5d1eb9606f1)) | ||
- typo ([#535](https://github.com/discordx-ts/discordx/issues/535)) ([356697](https://github.com/discordx-ts/discordx/commit/356697e0af3e8db832d80d38d671f7e75eae68aa)) | ||
- sort imports ([fb5b0f](https://github.com/discordx-ts/discordx/commit/fb5b0f82661313a4e9e6638db71670a7fb524ac2)) | ||
- seperate internal logics ([57e032](https://github.com/discordx-ts/discordx/commit/57e032a765bee0a66a7f36fabdde0499319606a8)) | ||
## Fixed | ||
- add missed export of di logic ([#838](https://github.com/discordx-ts/discordx/issues/838)) ([2b35f9](https://github.com/discordx-ts/discordx/commit/2b35f93b960ef42cf18909d3add3e3e2cd43c4d7)) | ||
- fix: monorepo |
{ | ||
"name": "@discordx/di", | ||
"version": "3.1.1", | ||
"version": "3.2.0", | ||
"private": false, | ||
@@ -33,10 +33,9 @@ "description": "dependency injection service with TSyringe support", | ||
".": { | ||
"import": "./build/esm/index.js", | ||
"require": "./build/cjs/index.js" | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.js" | ||
} | ||
}, | ||
"main": "./build/cjs/index.js", | ||
"module": "./build/esm/index.js", | ||
"types": "./dist/index.d.ts", | ||
"files": [ | ||
"build", | ||
"dist", | ||
"CHANGELOG.md", | ||
@@ -49,16 +48,12 @@ "LICENSE", | ||
"scripts": { | ||
"build": "tsc && npm run build:cjs", | ||
"build:changelog": "npx @discordx/changelog@latest --src src --match-tag di-* --replace-tag di-", | ||
"build:typedoc": "npx typedoc src/index.ts --out ../../docs/static/api/di", | ||
"build:cjs": "tsc --module CommonJs --outDir build/cjs && npm run postbuild:cjs", | ||
"postbuild:cjs": "node ../../scripts/postbuild.mjs --path=build", | ||
"type-check": "tsc --noemit" | ||
"build": "tsup src/index.ts --format cjs,esm --dts", | ||
"build:typedoc": "npx typedoc src/index.ts --out ../../docs/static/api/di" | ||
}, | ||
"dependencies": { | ||
"tsyringe": "^4.7.0", | ||
"tsyringe": "^4.8.0", | ||
"typedi": "^0.10.0" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^18.15.11", | ||
"typescript": "5.0.4" | ||
"@types/node": "^20.8.10", | ||
"typescript": "5.2.2" | ||
}, | ||
@@ -65,0 +60,0 @@ "engines": { |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
38625
9
583
1
Updatedtsyringe@^4.8.0