first-di 3.4.2 → 3.4.4
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/CONTRIBUTING.md +12 -6
- package/README.md +1 -0
- package/package.json +1 -1
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.4] - 2025-12-07
|
|
6
|
+
|
|
7
|
+
### 📚 Documentation
|
|
8
|
+
|
|
9
|
+
- Add CodeQL badge to README for enhanced security scanning visibility
|
|
10
|
+
|
|
11
|
+
## [3.4.3] - 2025-12-07
|
|
12
|
+
|
|
13
|
+
### 📚 Documentation
|
|
14
|
+
|
|
15
|
+
- Update bug report template and contributing guidelines for first-di
|
|
16
|
+
|
|
5
17
|
## [3.4.2] - 2025-12-07
|
|
6
18
|
|
|
7
19
|
### 📚 Documentation
|
package/CONTRIBUTING.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Contributing to
|
|
1
|
+
# Contributing to first-di
|
|
2
2
|
|
|
3
3
|
Thank you for your interest in contributing! This document provides guidelines for contributing to this project.
|
|
4
4
|
|
|
@@ -50,8 +50,8 @@ Enhancement suggestions are welcome! Please provide:
|
|
|
50
50
|
|
|
51
51
|
```bash
|
|
52
52
|
# Clone your fork
|
|
53
|
-
git clone https://github.com/YOUR_USERNAME/
|
|
54
|
-
cd
|
|
53
|
+
git clone https://github.com/YOUR_USERNAME/first-di.git
|
|
54
|
+
cd first-di
|
|
55
55
|
|
|
56
56
|
# Install dependencies
|
|
57
57
|
npm install
|
|
@@ -62,7 +62,7 @@ npm test
|
|
|
62
62
|
|
|
63
63
|
## Coding Standards
|
|
64
64
|
|
|
65
|
-
This project follows
|
|
65
|
+
This project follows [@labeg/code-style](https://www.npmjs.com/package/@labeg/code-style) ESLint rules. Key principles:
|
|
66
66
|
|
|
67
67
|
### Code Style
|
|
68
68
|
|
|
@@ -104,9 +104,15 @@ chore: upgrade dependencies
|
|
|
104
104
|
Before submitting your PR:
|
|
105
105
|
|
|
106
106
|
```bash
|
|
107
|
-
# Run
|
|
107
|
+
# Run linter
|
|
108
|
+
npm run lint
|
|
109
|
+
|
|
110
|
+
# Run tests
|
|
108
111
|
npm test
|
|
109
112
|
|
|
113
|
+
# Run tests with coverage
|
|
114
|
+
npm run coverage
|
|
115
|
+
|
|
110
116
|
# Check for security vulnerabilities
|
|
111
117
|
npm audit
|
|
112
118
|
```
|
|
@@ -141,4 +147,4 @@ By contributing, you agree that your contributions will be licensed under the MI
|
|
|
141
147
|
|
|
142
148
|
---
|
|
143
149
|
|
|
144
|
-
Thank you for contributing to
|
|
150
|
+
Thank you for contributing to first-di! 🎉
|
package/README.md
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
[](https://www.npmjs.com/package/first-di)
|
|
5
5
|
[](https://github.com/LabEG/first-di/blob/master/LICENSE)
|
|
6
6
|
[](https://github.com/LabEG/first-di/actions)
|
|
7
|
+
[](https://github.com/LabEG/first-di/security/code-scanning)
|
|
7
8
|
|
|
8
9
|
Lightweight and powerful dependency injection container for TypeScript applications
|
|
9
10
|
|