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 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 @labeg/code-style
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/code-style.git
54
- cd code-style
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 its own ESLint rules! Key principles:
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 ESLint tests
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 @labeg/code-style! 🎉
150
+ Thank you for contributing to first-di! 🎉
package/README.md CHANGED
@@ -4,6 +4,7 @@
4
4
  [![npm downloads](https://img.shields.io/npm/dm/first-di.svg)](https://www.npmjs.com/package/first-di)
5
5
  [![license](https://img.shields.io/npm/l/first-di.svg)](https://github.com/LabEG/first-di/blob/master/LICENSE)
6
6
  [![Build Status](https://github.com/LabEG/first-di/workflows/Test%20Pull%20Request/badge.svg)](https://github.com/LabEG/first-di/actions)
7
+ [![CodeQL](https://github.com/LabEG/first-di/workflows/CodeQL%20Advanced/badge.svg)](https://github.com/LabEG/first-di/security/code-scanning)
7
8
 
8
9
  Lightweight and powerful dependency injection container for TypeScript applications
9
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "first-di",
3
- "version": "3.4.2",
3
+ "version": "3.4.4",
4
4
  "author": "Eugene Labutin",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/LabEG/first-di#readme",