@buildplease/core 1.0.1 → 1.0.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/README.md +13 -11
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# @buildplease/core
|
|
2
2
|
|
|
3
|
-
Core
|
|
3
|
+
Core is the shared foundation for BuildPlease applications. It provides framework-independent application primitives used by the other BuildPlease kits.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
pnpm add @buildplease/core
|
|
@@ -16,15 +16,17 @@ import { coreAssembly } from '@buildplease/core';
|
|
|
16
16
|
const assemblies = coreAssembly();
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
Node.js-specific
|
|
19
|
+
Node.js-specific APIs are available from `@buildplease/core/node`.
|
|
20
20
|
|
|
21
|
-
##
|
|
21
|
+
## Features
|
|
22
22
|
|
|
23
|
-
- dependency injection and assemblies
|
|
24
|
-
-
|
|
25
|
-
-
|
|
26
|
-
-
|
|
27
|
-
-
|
|
28
|
-
- Node.js
|
|
23
|
+
- dependency injection and application assemblies
|
|
24
|
+
- operations, models, converters, and formatters
|
|
25
|
+
- errors, validation, and normalization primitives
|
|
26
|
+
- L10n resources and localization helpers
|
|
27
|
+
- security, synchronization, and general utilities
|
|
28
|
+
- Node.js infrastructure helpers
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
## License
|
|
31
|
+
|
|
32
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@buildplease/core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"pino-pretty": "13.1.3"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@
|
|
61
|
-
"@
|
|
60
|
+
"@buildplease/identity": "1.0.0",
|
|
61
|
+
"@types/ms": "2.1.0"
|
|
62
62
|
},
|
|
63
63
|
"peerDependencies": {
|
|
64
64
|
"inversify": "8.2.3",
|