@spring-systems/core 0.8.0 → 0.8.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/CHANGELOG.md +8 -21
- package/README.md +3 -3
- package/dist/index.js +1 -1
- package/package.json +8 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,33 +1,20 @@
|
|
|
1
1
|
# @spring-systems/core
|
|
2
2
|
|
|
3
|
-
## 0.
|
|
3
|
+
## 0.8.2
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- Improve npm package metadata and documentation quality (author, keywords, descriptions, peer dependency docs, changelog coverage).
|
|
8
8
|
|
|
9
|
-
## 0.
|
|
9
|
+
## 0.8.1
|
|
10
10
|
|
|
11
11
|
### Patch Changes
|
|
12
12
|
|
|
13
|
-
-
|
|
13
|
+
- Fix Bitbucket documentation URLs (blob/main → src/main).
|
|
14
14
|
|
|
15
|
-
## 0.
|
|
15
|
+
## 0.8.0
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
### Minor Changes
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
- Improve package documentation, onboarding navigation, and npm-published docs coverage.
|
|
22
|
-
|
|
23
|
-
## 0.7.1
|
|
24
|
-
|
|
25
|
-
### Patch Changes
|
|
26
|
-
|
|
27
|
-
- Align package documentation with repository docs and enforce docs quality checks in release workflow.
|
|
28
|
-
|
|
29
|
-
## 0.7.0
|
|
30
|
-
|
|
31
|
-
### Patch Changes
|
|
32
|
-
|
|
33
|
-
- Initial npm registry release
|
|
19
|
+
- Initial public release.
|
|
20
|
+
- Core runtime primitives: configuration, instance lifecycle, typed event bus, middleware, plugins, validation, auth state, adapters, logger, i18n defaults, shared type definitions, error types, testing helpers, devtools inspection, and shared utilities.
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @spring-systems/core
|
|
2
2
|
|
|
3
|
-
Core types, utilities, configuration, and runtime primitives for the Spring Systems
|
|
3
|
+
Core types, utilities, configuration, and runtime primitives for the Spring Systems framework. This package is intentionally React-free and exists to hold the shared contracts the rest of the stack builds on.
|
|
4
4
|
|
|
5
5
|
## When To Use It
|
|
6
6
|
|
|
@@ -65,8 +65,8 @@ markInstanceReady(instance);
|
|
|
65
65
|
- do not treat `SpringInstance` as a replacement for screen-local state
|
|
66
66
|
- if code needs React rendering or component composition, it likely belongs in `ui`
|
|
67
67
|
- if code needs the Next.js server boundary, it belongs in `server`
|
|
68
|
-
- for deeper ownership decisions see [ARCHITECTURE.md](https://bitbucket.org/springsystems-projects/spring-framework-frontend/
|
|
69
|
-
- for extension design see [EXTENSIBILITY_COOKBOOK.md](https://bitbucket.org/springsystems-projects/spring-framework-frontend/
|
|
68
|
+
- for deeper ownership decisions see [ARCHITECTURE.md](https://bitbucket.org/springsystems-projects/spring-framework-frontend/src/main/docs/ARCHITECTURE.md) in the monorepo docs
|
|
69
|
+
- for extension design see [EXTENSIBILITY_COOKBOOK.md](https://bitbucket.org/springsystems-projects/spring-framework-frontend/src/main/docs/EXTENSIBILITY_COOKBOOK.md) in the monorepo docs
|
|
70
70
|
|
|
71
71
|
## Changelog
|
|
72
72
|
|
package/dist/index.js
CHANGED
|
@@ -26,7 +26,7 @@ import "./chunk-EFUBAQCV.js";
|
|
|
26
26
|
import "./chunk-PT4DIYUK.js";
|
|
27
27
|
|
|
28
28
|
// src/index.ts
|
|
29
|
-
var SPRING_CORE_VERSION = true ? "0.8.
|
|
29
|
+
var SPRING_CORE_VERSION = true ? "0.8.2" : "0.0.0-dev";
|
|
30
30
|
export {
|
|
31
31
|
SPRING_CORE_VERSION,
|
|
32
32
|
configureCapabilities,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spring-systems/core",
|
|
3
|
-
"version": "0.8.
|
|
4
|
-
"description": "Core types, utilities, and configuration for Spring Systems
|
|
3
|
+
"version": "0.8.2",
|
|
4
|
+
"description": "Core types, utilities, and configuration for the Spring Systems framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -12,9 +12,13 @@
|
|
|
12
12
|
"CHANGELOG.md"
|
|
13
13
|
],
|
|
14
14
|
"license": "UNLICENSED",
|
|
15
|
+
"author": "Spring Systems",
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "restricted"
|
|
18
|
+
},
|
|
15
19
|
"repository": {
|
|
16
20
|
"type": "git",
|
|
17
|
-
"url": "git+https://
|
|
21
|
+
"url": "git+https://bitbucket.org/springsystems-projects/spring-framework-frontend.git",
|
|
18
22
|
"directory": "packages/core"
|
|
19
23
|
},
|
|
20
24
|
"homepage": "https://bitbucket.org/springsystems-projects/spring-framework-frontend/src/main/packages/core#readme",
|
|
@@ -22,7 +26,7 @@
|
|
|
22
26
|
"url": "https://bitbucket.org/springsystems-projects/spring-framework-frontend/issues"
|
|
23
27
|
},
|
|
24
28
|
"keywords": [
|
|
25
|
-
"spring",
|
|
29
|
+
"spring-systems",
|
|
26
30
|
"typescript",
|
|
27
31
|
"framework",
|
|
28
32
|
"core",
|