@forumone/throughline-components 0.2.3 → 0.2.5
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 +23 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @forumone/throughline-components
|
|
2
2
|
|
|
3
|
+
## 0.2.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [24bd325]
|
|
8
|
+
- @forumone/throughline-design-contract@0.3.0
|
|
9
|
+
|
|
10
|
+
## 0.2.4
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 7ee992d: Fix broken external installs of the core plugins.
|
|
15
|
+
|
|
16
|
+
Every core plugin emits a runtime `import { getPluginRegistry } from '@forumone/throughline-plugin-contract'`, but `plugin-contract` was marked `private` and never published — so the published plugins pinned `@forumone/throughline-plugin-contract: 0.0.0`, a version that does not exist on npm, and any external `pnpm install` failed with a 404.
|
|
17
|
+
|
|
18
|
+
`plugin-contract` is now published, so the dependent plugins re-pin a real version. The cross-plugin registry is keyed on a global `Symbol.for(...)` and stored on the Payload instance, so behavior is unchanged.
|
|
19
|
+
|
|
20
|
+
Also fixes the scaffolder, which pinned `@forumone/throughline-reference-ds@^0.1.0` (latest is `0.2.0`) in the generated `apps/web` and `design-system` packages.
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [7ee992d]
|
|
23
|
+
- @forumone/throughline-plugin-contract@0.2.1
|
|
24
|
+
- @forumone/throughline-core@0.2.2
|
|
25
|
+
|
|
3
26
|
## 0.2.3
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forumone/throughline-components",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": "MCP server that exposes a design system manifest as conversational primitives for Throughline.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"zod": "^3.23.0",
|
|
43
|
-
"@forumone/throughline-core": "0.2.
|
|
44
|
-
"@forumone/throughline-design-contract": "0.
|
|
45
|
-
"@forumone/throughline-plugin-contract": "0.
|
|
43
|
+
"@forumone/throughline-core": "0.2.2",
|
|
44
|
+
"@forumone/throughline-design-contract": "0.3.0",
|
|
45
|
+
"@forumone/throughline-plugin-contract": "0.2.1"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/node": "^20.17.0",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"typescript": "^5.6.0",
|
|
52
52
|
"vitest": "^2.1.0",
|
|
53
53
|
"@forumone/throughline-eslint-config": "0.0.0",
|
|
54
|
-
"@forumone/throughline-reference-ds": "0.
|
|
54
|
+
"@forumone/throughline-reference-ds": "0.3.1",
|
|
55
55
|
"@forumone/throughline-tsconfig": "0.0.0"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|