ai-error-solution 1.0.0 → 1.1.1
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 +14 -1
- package/README.md +2 -10
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.1] - 2025-12-31
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Removed self-dependency issue in package.json
|
|
12
|
+
- Cleaned up unnecessary documentation files
|
|
13
|
+
- Package optimization
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- Streamlined package structure for npm distribution
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
8
20
|
## [1.0.0] - 2025-12-31
|
|
9
21
|
|
|
10
22
|
### Added
|
|
@@ -59,6 +71,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
59
71
|
|
|
60
72
|
## Version History
|
|
61
73
|
|
|
74
|
+
- **1.0.1** (2025-12-31) - Bug fixes and optimization
|
|
62
75
|
- **1.0.0** (2025-12-31) - Initial release
|
|
63
76
|
|
|
64
77
|
---
|
|
@@ -70,6 +83,6 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for details on how to contribute to this
|
|
|
70
83
|
## Support
|
|
71
84
|
|
|
72
85
|
For issues and questions, please visit:
|
|
73
|
-
- GitHub Issues: https://github.com/
|
|
86
|
+
- GitHub Issues: https://github.com/Rashidqf/ai-error-solution/issues
|
|
74
87
|
- npm Page: https://www.npmjs.com/package/ai-error-solution
|
|
75
88
|
|
package/README.md
CHANGED
|
@@ -372,20 +372,12 @@ Contributions are welcome! Please feel free to submit a Pull Request.
|
|
|
372
372
|
## 🔗 Links
|
|
373
373
|
|
|
374
374
|
- [npm Package](https://www.npmjs.com/package/ai-error-solution)
|
|
375
|
-
- [GitHub Repository](https://github.com/
|
|
375
|
+
- [GitHub Repository](https://github.com/Rashidqf/ai-error-solution)
|
|
376
376
|
- [OpenAI API Documentation](https://platform.openai.com/docs)
|
|
377
|
-
- [Report Issues](https://github.com/
|
|
377
|
+
- [Report Issues](https://github.com/Rashidqf/ai-error-solution/issues)
|
|
378
378
|
|
|
379
379
|
---
|
|
380
380
|
|
|
381
|
-
## 💡 What This Package Does NOT Do
|
|
382
|
-
|
|
383
|
-
- ❌ **No auto-fixing** - Does not modify your code automatically
|
|
384
|
-
- ❌ **No telemetry** - Does not collect or store any usage data
|
|
385
|
-
- ❌ **No remote storage** - Errors are not stored anywhere
|
|
386
|
-
- ❌ **No background processes** - Only runs when you call it
|
|
387
|
-
|
|
388
|
-
---
|
|
389
381
|
|
|
390
382
|
## 🌟 Why This Package?
|
|
391
383
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-error-solution",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Lightweight Node.js error handler that uses OpenAI to provide explanations, causes, fixes, and documentation links for runtime errors",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -27,11 +27,10 @@
|
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"repository": {
|
|
29
29
|
"type": "git",
|
|
30
|
-
"url": "https://github.com/
|
|
30
|
+
"url": "https://github.com/Rashidqf/ai-error-solution.git"
|
|
31
31
|
},
|
|
32
32
|
"bugs": {
|
|
33
|
-
"url": "https://github.com/
|
|
33
|
+
"url": "https://github.com/Rashidqf/ai-error-solution/issues"
|
|
34
34
|
},
|
|
35
|
-
"homepage": "https://github.com/
|
|
35
|
+
"homepage": "https://github.com/Rashidqf/ai-error-solution#readme"
|
|
36
36
|
}
|
|
37
|
-
|