@dws-std/registry 1.3.0 → 1.3.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/README.md +5 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://github.com/Dominus-Web-Service/std/blob/main/packages/registry/logo-registry.png" alt="DWS Registry logo" width="200" />
|
|
3
|
+
</p>
|
|
4
|
+
|
|
1
5
|
# 🎯 DWS Registry
|
|
2
6
|
|
|
3
7
|
If you've ever copy-pasted a `getInstance()` pattern into yet another class, this package is for you.
|
|
@@ -97,7 +101,7 @@ Registry.register('DatabaseConnection', new DatabaseConnection());
|
|
|
97
101
|
|
|
98
102
|
## 📚 API Reference
|
|
99
103
|
|
|
100
|
-
Full docs: [
|
|
104
|
+
Full docs: [https://dominus-web-service.github.io/std/](https://dominus-web-service.github.io/std/)
|
|
101
105
|
|
|
102
106
|
## ⚖️ License
|
|
103
107
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dws-std/registry",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Centralized, type-safe registry for managing named instances.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"bun",
|
|
@@ -38,16 +38,16 @@
|
|
|
38
38
|
"test": "bun test --pass-with-no-tests --coverage"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@dws-std/error": "^2.3.
|
|
41
|
+
"@dws-std/error": "^2.3.1"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/bun": "^1.3.14",
|
|
45
|
-
"oxfmt": "0.
|
|
46
|
-
"oxlint": "1.
|
|
45
|
+
"oxfmt": "0.56.0",
|
|
46
|
+
"oxlint": "1.71.0",
|
|
47
47
|
"oxlint-tsgolint": "0.23.0",
|
|
48
48
|
"typescript": "^6.0.3"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
|
-
"@dws-std/error": "^2.3.
|
|
51
|
+
"@dws-std/error": "^2.3.1"
|
|
52
52
|
}
|
|
53
53
|
}
|