@codefast/di 0.4.0-canary.5 → 0.4.0
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/CHANGELOG.md +20 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @codefast/di
|
|
2
2
|
|
|
3
|
+
## 0.4.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`2397801`](https://github.com/codefastlabs/codefast/commit/239780172d7a71c3426382ec66309ec7f39bd883) Thanks [@thevuong](https://github.com/thevuong)! - chore: align package config globs
|
|
8
|
+
|
|
9
|
+
- [`172720f`](https://github.com/codefastlabs/codefast/commit/172720f8e7a7d65d653fb9b20bbb47a770b2f713) Thanks [@thevuong](https://github.com/thevuong)! - Drop redundant type assertions in the container, resolver, decorators, and module wiring — behavior is unchanged; the types now flow without casts.
|
|
10
|
+
|
|
11
|
+
- [`e0e4aae`](https://github.com/codefastlabs/codefast/commit/e0e4aaee087057668cd1e2ef4cacc83bc4eb833f) Thanks [@thevuong](https://github.com/thevuong)! - fix: support Node 26 mirror export verification
|
|
12
|
+
|
|
13
|
+
- [`f79b333`](https://github.com/codefastlabs/codefast/commit/f79b333d0599c19028f29b9889afcbfb99db91a1) Thanks [@thevuong](https://github.com/thevuong)! - feat(dev): enable source condition for zero-rebuild HMR in apps/docs
|
|
14
|
+
|
|
15
|
+
- [`ebdf9e3`](https://github.com/codefastlabs/codefast/commit/ebdf9e396d3c3a826f05f278c93d391a0ae5ca45) Thanks [@thevuong](https://github.com/thevuong)! - feat(web): refactor theme management to color scheme system
|
|
16
|
+
|
|
17
|
+
- [`6c3ac44`](https://github.com/codefastlabs/codefast/commit/6c3ac44b7ddb9e5bcf3fbe0757e00ef86f27b513) Thanks [@thevuong](https://github.com/thevuong)! - Normalize import statement order and package.json key order repo-wide via the new oxfmt `sortImports`/`sortPackageJson` settings — purely mechanical, no runtime behavior change.
|
|
18
|
+
|
|
19
|
+
- [`8fc1299`](https://github.com/codefastlabs/codefast/commit/8fc129956d353e1e31a2c1a364792484a85a53a1) Thanks [@thevuong](https://github.com/thevuong)! - refactor(di): clarify contextual names
|
|
20
|
+
|
|
21
|
+
## 0.4.0-canary.6
|
|
22
|
+
|
|
3
23
|
## 0.4.0-canary.5
|
|
4
24
|
|
|
5
25
|
## 0.4.0-canary.4
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codefast/di",
|
|
3
|
-
"version": "0.4.0
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Lightweight dependency injection primitives for Codefast",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"codefast",
|
|
@@ -196,17 +196,17 @@
|
|
|
196
196
|
"access": "public"
|
|
197
197
|
},
|
|
198
198
|
"devDependencies": {
|
|
199
|
-
"@babel/plugin-proposal-decorators": "8.0.
|
|
199
|
+
"@babel/plugin-proposal-decorators": "8.0.2",
|
|
200
200
|
"@rolldown/plugin-babel": "^0.2.3",
|
|
201
|
-
"@types/node": "^
|
|
202
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
203
|
-
"@vitest/coverage-v8": "^4.1.
|
|
201
|
+
"@types/node": "^26.0.0",
|
|
202
|
+
"@typescript/native-preview": "7.0.0-dev.20260621.1",
|
|
203
|
+
"@vitest/coverage-v8": "^4.1.9",
|
|
204
204
|
"expect-type": "^1.3.0",
|
|
205
|
-
"tsdown": "^0.22.
|
|
205
|
+
"tsdown": "^0.22.3",
|
|
206
206
|
"tsx": "^4.22.4",
|
|
207
207
|
"typescript": "^6.0.3",
|
|
208
|
-
"vitest": "^4.1.
|
|
209
|
-
"@codefast/typescript-config": "0.4.0
|
|
208
|
+
"vitest": "^4.1.9",
|
|
209
|
+
"@codefast/typescript-config": "0.4.0"
|
|
210
210
|
},
|
|
211
211
|
"engines": {
|
|
212
212
|
"node": ">=24.0.0"
|