@syntropysoft/syntropyfront 0.4.0 โ 0.4.2
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/LICENSE +1 -1
- package/README.md +6 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +65 -0
- package/dist/index.js.map +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +25 -17
package/LICENSE
CHANGED
|
@@ -189,7 +189,7 @@
|
|
|
189
189
|
same page as the copyright notice for easier identification within
|
|
190
190
|
third-party archives.
|
|
191
191
|
|
|
192
|
-
Copyright
|
|
192
|
+
Copyright 2026 Syntropysoft
|
|
193
193
|
|
|
194
194
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
195
195
|
you may not use this file except in compliance with the License.
|
package/README.md
CHANGED
|
@@ -101,10 +101,10 @@ syntropyFront.configure({
|
|
|
101
101
|
## ๐ฆ Installation
|
|
102
102
|
|
|
103
103
|
```bash
|
|
104
|
-
|
|
104
|
+
pnpm add @syntropysoft/syntropyfront
|
|
105
105
|
```
|
|
106
106
|
|
|
107
|
-
## ๐ **Performance
|
|
107
|
+
## ๐ **Quality & Performance (v0.4.2)**
|
|
108
108
|
|
|
109
109
|
SyntropyFront has been optimized for maximum performance and minimal bundle size:
|
|
110
110
|
|
|
@@ -478,7 +478,7 @@ src/core/
|
|
|
478
478
|
- **Single Responsibility Principle (SRP)**: Each class has one clear purpose
|
|
479
479
|
- **Dependency Injection**: Components receive dependencies through constructors
|
|
480
480
|
- **Declarative Error Handling**: Structured error responses with fallbacks
|
|
481
|
-
- **Comprehensive Testing**:
|
|
481
|
+
- **Comprehensive Testing**: 430+ tests with 71.03% mutation score
|
|
482
482
|
- **Optimized Performance**: Timeouts optimized for faster execution
|
|
483
483
|
|
|
484
484
|
## ๐งช Testing & Quality
|
|
@@ -487,8 +487,8 @@ SyntropyFront maintains high code quality through comprehensive testing:
|
|
|
487
487
|
|
|
488
488
|
### Test Coverage & Mutation Testing
|
|
489
489
|
|
|
490
|
-
- **Mutation Score**:
|
|
491
|
-
- **Test Coverage**:
|
|
490
|
+
- **Mutation Score**: 71.03% - Our tests effectively detect code changes
|
|
491
|
+
- **Test Coverage**: 89.47% (Statements) / 81.47% (Branches)
|
|
492
492
|
- **Key Components Performance**:
|
|
493
493
|
- `Agent.js`: 87.23% mutation score
|
|
494
494
|
- `ConfigurationManager.js`: 100% mutation score
|
|
@@ -501,6 +501,7 @@ SyntropyFront maintains high code quality through comprehensive testing:
|
|
|
501
501
|
- `DatabaseConfigManager.js`: 86.89% mutation score
|
|
502
502
|
- `DatabaseConnectionManager.js`: 85.96% mutation score
|
|
503
503
|
- `PersistentBufferManager.js`: 77.63% mutation score
|
|
504
|
+
- `RobustSerializer.js`: 73.36% mutation score
|
|
504
505
|
|
|
505
506
|
### Testing Stack
|
|
506
507
|
|