@astralibx/core 1.1.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/README.md +4 -4
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -70,10 +70,10 @@ validate({
|
|
|
70
70
|
|
|
71
71
|
## Documentation
|
|
72
72
|
|
|
73
|
-
- [Error Classes](docs/errors.md) -- AlxError, ConfigValidationError, extending for your package
|
|
74
|
-
- [Type Contracts](docs/types.md) -- LogAdapter, BaseDbConfig, BaseRedisConfig
|
|
75
|
-
- [Validation](docs/validation.md) -- Zod schemas, createConfigValidator, composing schemas
|
|
76
|
-
- [Package Author Guide](docs/package-author-guide.md) -- Building new @astralibx packages on top of core
|
|
73
|
+
- [Error Classes](https://github.com/Hariprakash1997/astralib/blob/main/packages/core/docs/errors.md) -- AlxError, ConfigValidationError, extending for your package
|
|
74
|
+
- [Type Contracts](https://github.com/Hariprakash1997/astralib/blob/main/packages/core/docs/types.md) -- LogAdapter, BaseDbConfig, BaseRedisConfig
|
|
75
|
+
- [Validation](https://github.com/Hariprakash1997/astralib/blob/main/packages/core/docs/validation.md) -- Zod schemas, createConfigValidator, composing schemas
|
|
76
|
+
- [Package Author Guide](https://github.com/Hariprakash1997/astralib/blob/main/packages/core/docs/package-author-guide.md) -- Building new @astralibx packages on top of core
|
|
77
77
|
|
|
78
78
|
## License
|
|
79
79
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astralibx/core",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Shared foundation for all @astralibx packages — base errors, types, and validation helpers",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -26,8 +26,7 @@
|
|
|
26
26
|
"test": "vitest run",
|
|
27
27
|
"test:watch": "vitest",
|
|
28
28
|
"test:coverage": "vitest run --coverage",
|
|
29
|
-
"lint": "eslint src/"
|
|
30
|
-
"prepublishOnly": "npm run build"
|
|
29
|
+
"lint": "eslint src/"
|
|
31
30
|
},
|
|
32
31
|
"keywords": [
|
|
33
32
|
"astralibx",
|