@0xsarwagya/ontoly-diagnostics 0.1.0-alpha.14 → 0.1.0-alpha.15
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 +11 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -4,6 +4,15 @@ Shared diagnostic constructors for Ontoly.
|
|
|
4
4
|
|
|
5
5
|
This package is part of [Ontoly](https://github.com/0xsarwagya/ontoly), a TypeScript-native software intelligence engine that builds a deterministic Software Graph.
|
|
6
6
|
|
|
7
|
+
## Responsibility
|
|
8
|
+
|
|
9
|
+
`@0xsarwagya/ontoly-diagnostics` keeps diagnostic construction and diagnostic
|
|
10
|
+
shape wording consistent across packages. It does not execute compiler passes,
|
|
11
|
+
run analyzers, mutate graphs, or render reports.
|
|
12
|
+
|
|
13
|
+
See the repository [architecture map](../../ARCHITECTURE.md) for package
|
|
14
|
+
boundaries.
|
|
15
|
+
|
|
7
16
|
## Installation
|
|
8
17
|
|
|
9
18
|
```bash
|
|
@@ -12,10 +21,10 @@ pnpm add @0xsarwagya/ontoly-diagnostics
|
|
|
12
21
|
|
|
13
22
|
## Status
|
|
14
23
|
|
|
15
|
-
|
|
24
|
+
Public Preview package for Ontoly v0.1.0-alpha.15. The public API is versioned with the Software Graph and RFC process.
|
|
16
25
|
|
|
17
26
|
## Links
|
|
18
27
|
|
|
19
28
|
- [Repository](https://github.com/0xsarwagya/ontoly)
|
|
20
|
-
- [Documentation](https://
|
|
29
|
+
- [Documentation](https://ontoly.sarwagya.wtf)
|
|
21
30
|
- [Issues](https://github.com/0xsarwagya/ontoly/issues)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@0xsarwagya/ontoly-diagnostics",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.15",
|
|
4
4
|
"description": "Shared diagnostic constructors for Ontoly.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"url": "git+https://github.com/0xsarwagya/ontoly.git",
|
|
10
10
|
"directory": "packages/diagnostics"
|
|
11
11
|
},
|
|
12
|
-
"homepage": "https://
|
|
12
|
+
"homepage": "https://ontoly.sarwagya.wtf",
|
|
13
13
|
"sideEffects": false,
|
|
14
14
|
"exports": {
|
|
15
15
|
".": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"LICENSE"
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@0xsarwagya/ontoly-core": "0.1.0-alpha.
|
|
26
|
+
"@0xsarwagya/ontoly-core": "0.1.0-alpha.15"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|