first-di 3.4.5 → 3.4.7
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 +12 -0
- package/package.json +14 -11
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [3.4.7] - 2025-12-16
|
|
6
|
+
|
|
7
|
+
### ⚙️ Miscellaneous Tasks
|
|
8
|
+
|
|
9
|
+
- Update dependencies and add upgrade script
|
|
10
|
+
|
|
11
|
+
# Changelog
|
|
12
|
+
|
|
13
|
+
All notable changes to this project will be documented in this file.
|
|
14
|
+
|
|
15
|
+
## [3.4.6] - 2025-12-16
|
|
16
|
+
|
|
5
17
|
## [3.4.5] - 2025-12-09
|
|
6
18
|
|
|
7
19
|
## [3.4.4] - 2025-12-07
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "first-di",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.7",
|
|
4
4
|
"author": "Eugene Labutin",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/LabEG/first-di#readme",
|
|
@@ -36,23 +36,26 @@
|
|
|
36
36
|
"build": "rm -rf dist/ && tsc --project tsconfig.build.json && node ./dist/index.js",
|
|
37
37
|
"release": "cliff-jumper --name 'first-di' --package-path '.' --no-skip-changelog --no-skip-tag",
|
|
38
38
|
"prepublishOnly": "npm run lint && npm run build && npm run test",
|
|
39
|
+
"upgrade": "ncu -u && rimraf -v node_modules package-lock.json && npm install",
|
|
39
40
|
"prepare": "husky"
|
|
40
41
|
},
|
|
41
42
|
"peerDependencies": {
|
|
42
43
|
"reflect-metadata": ">=0.1.0"
|
|
43
44
|
},
|
|
44
45
|
"devDependencies": {
|
|
45
|
-
"@
|
|
46
|
-
"@
|
|
47
|
-
"@
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"@commitlint/config-conventional": "^19.8.1",
|
|
46
|
+
"@commitlint/cli": "^20.2.0",
|
|
47
|
+
"@commitlint/config-conventional": "^20.2.0",
|
|
48
|
+
"@favware/cliff-jumper": "^6.0.0",
|
|
49
|
+
"@labeg/code-style": "^6.10.14",
|
|
50
|
+
"@swc-node/register": "^1.11.1",
|
|
51
|
+
"@types/chai": "^5.2.3",
|
|
52
|
+
"chai": "^6.2.1",
|
|
53
53
|
"husky": "^9.1.7",
|
|
54
|
-
"lint-staged": "^16.
|
|
55
|
-
"
|
|
54
|
+
"lint-staged": "^16.2.7",
|
|
55
|
+
"npm-check-updates": "^19.2.0",
|
|
56
|
+
"reflect-metadata": "^0.2.2",
|
|
57
|
+
"rimraf": "^6.1.2",
|
|
58
|
+
"typescript": "^5.9.3"
|
|
56
59
|
},
|
|
57
60
|
"keywords": [
|
|
58
61
|
"dependency injection",
|