@synergy-design-system/mcp 1.41.1 → 1.41.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 +11 -0
- package/dist/bin/create-checksum.js +2 -1
- package/dist/build/assets.js +0 -1
- package/dist/build/components.js +1 -0
- package/dist/build/styles.js +0 -1
- package/dist/build/tokens.js +0 -1
- package/dist/tools/asset-info.js +4 -2
- package/dist/tools/component-info.js +0 -1
- package/dist/tools/framework-info.js +0 -1
- package/dist/tools/template-info.js +0 -1
- package/dist/tools/version.js +3 -1
- package/dist/utilities/checksum.js +2 -1
- package/dist/utilities/storybook/build-docs.js +2 -1
- package/dist/utilities/storybook/configs.js +3 -3
- package/dist/utilities/storybook/docs-scraper.js +0 -1
- package/dist/utilities/storybook/scraper.js +2 -2
- package/dist/utilities/storybook/storybook-manager.js +1 -2
- package/dist/utilities/version.d.ts +20 -2
- package/metadata/checksum.txt +1 -1
- package/metadata/packages/assets/CHANGELOG.md +8 -0
- package/metadata/packages/assets/README.md +5 -1
- package/metadata/packages/components/components/syn-badge/component.custom.styles.ts +1 -0
- package/metadata/packages/components/components/syn-range/component.styles.ts +1 -0
- package/metadata/packages/components/components/syn-side-nav/component.ts +2 -1
- package/metadata/packages/components/components/syn-validate/component.ts +1 -0
- package/metadata/packages/components/static/CHANGELOG.md +11 -0
- package/metadata/packages/components/static/README.md +1 -1
- package/metadata/packages/fonts/CHANGELOG.md +8 -0
- package/metadata/packages/fonts/package.json +4 -4
- package/metadata/packages/styles/CHANGELOG.md +11 -0
- package/metadata/packages/tokens/CHANGELOG.md +8 -0
- package/metadata/packages/tokens/dark.css +1 -1
- package/metadata/packages/tokens/index.js +1 -1
- package/metadata/packages/tokens/light.css +1 -1
- package/metadata/packages/tokens/sick2018_dark.css +1 -1
- package/metadata/packages/tokens/sick2018_light.css +1 -1
- package/metadata/packages/tokens/sick2025_dark.css +1 -1
- package/metadata/packages/tokens/sick2025_light.css +1 -1
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.41.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1148](https://github.com/synergy-design-system/synergy-design-system/pull/1148) [`73b7011`](https://github.com/synergy-design-system/synergy-design-system/commit/73b70118ae21bc58c83cbfeb9e2e8447873803a6) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-01-08
|
|
8
|
+
|
|
9
|
+
fix: 🐛 Minor dependency updates (#258)
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`73b7011`](https://github.com/synergy-design-system/synergy-design-system/commit/73b70118ae21bc58c83cbfeb9e2e8447873803a6)]:
|
|
12
|
+
- @synergy-design-system/assets@1.25.1
|
|
13
|
+
|
|
3
14
|
## 1.41.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
3
|
-
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
4
3
|
import ora from 'ora';
|
|
5
4
|
import { createFolderChecksum, metaDataPath, } from '../utilities/index.js';
|
|
6
5
|
async function run() {
|
|
@@ -16,8 +15,10 @@ async function run() {
|
|
|
16
15
|
spinner.succeed(`Written to: ${metaDataPath}/checksum.txt`);
|
|
17
16
|
}
|
|
18
17
|
catch (error) {
|
|
18
|
+
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions
|
|
19
19
|
spinner.fail(`Failed to generate checksum: ${error}`);
|
|
20
20
|
process.exit(1);
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
|
+
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
23
24
|
run();
|
package/dist/build/assets.js
CHANGED
|
@@ -36,7 +36,6 @@ export const buildAssets = async () => {
|
|
|
36
36
|
const modulePath = fileURLToPath(moduleUrl);
|
|
37
37
|
const moduleDir = path.join(path.dirname(modulePath), '../');
|
|
38
38
|
// Process the files (placeholder for actual logic)
|
|
39
|
-
// eslint-disable-next-line no-console
|
|
40
39
|
const contents = await globby(filesToCopy, {
|
|
41
40
|
cwd: moduleDir,
|
|
42
41
|
onlyFiles: true,
|
package/dist/build/components.js
CHANGED
|
@@ -103,6 +103,7 @@ export const buildComponents = async () => {
|
|
|
103
103
|
return copyFile(source, targetFileName);
|
|
104
104
|
});
|
|
105
105
|
});
|
|
106
|
+
// eslint-disable-next-line @typescript-eslint/await-thenable
|
|
106
107
|
await Promise.all(componentMetadata);
|
|
107
108
|
spinner.succeed('Components metadata generated successfully.');
|
|
108
109
|
spinner.text = 'Generating static metadata...';
|
package/dist/build/styles.js
CHANGED
|
@@ -37,7 +37,6 @@ export const buildStyles = async () => {
|
|
|
37
37
|
const modulePath = fileURLToPath(moduleUrl);
|
|
38
38
|
const moduleDir = path.join(path.dirname(modulePath), '../');
|
|
39
39
|
// Process the files (placeholder for actual logic)
|
|
40
|
-
// eslint-disable-next-line no-console
|
|
41
40
|
const contents = await globby(filesToCopy, {
|
|
42
41
|
cwd: moduleDir,
|
|
43
42
|
onlyFiles: true,
|
package/dist/build/tokens.js
CHANGED
|
@@ -38,7 +38,6 @@ export const buildTokens = async () => {
|
|
|
38
38
|
const modulePath = fileURLToPath(moduleUrl);
|
|
39
39
|
const moduleDir = path.join(path.dirname(modulePath), '../../');
|
|
40
40
|
// Process the files (placeholder for actual logic)
|
|
41
|
-
// eslint-disable-next-line no-console
|
|
42
41
|
const contents = await globby(filesToCopy, {
|
|
43
42
|
cwd: moduleDir,
|
|
44
43
|
onlyFiles: true,
|
package/dist/tools/asset-info.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/* eslint-disable complexity */
|
|
2
1
|
import { z } from 'zod';
|
|
3
2
|
import * as availableIconsets from '@synergy-design-system/assets';
|
|
4
3
|
import { getAssetsMetaData, getStructuredMetaData, } from '../utilities/index.js';
|
|
@@ -62,13 +61,16 @@ export const assetInfoTool = (server) => {
|
|
|
62
61
|
.describe(`The maximum number of icons to return. Defaults to ${DEFAULT_LIMIT}. When using multiple filters (pipe-separated), this limit applies per filter term.`),
|
|
63
62
|
},
|
|
64
63
|
title: 'Available Icons',
|
|
65
|
-
}, async ({ filter, iconset, limit,
|
|
64
|
+
}, async ({ filter, iconset, limit,
|
|
65
|
+
// eslint-disable-next-line complexity
|
|
66
|
+
}) => {
|
|
66
67
|
// Get the iconset that should be used by key/value of iconsetListAliases
|
|
67
68
|
const setToUse = iconset
|
|
68
69
|
? Object
|
|
69
70
|
.entries(iconsetListAliases)
|
|
70
71
|
.find(([, aliases]) => aliases.includes(iconset))?.[0] || 'sick2018Icons'
|
|
71
72
|
: 'sick2018Icons';
|
|
73
|
+
// eslint-disable-next-line no-constant-binary-expression, valid-typeof
|
|
72
74
|
const foundIconSet = typeof availableIconsets[setToUse] !== undefined
|
|
73
75
|
? availableIconsets[setToUse]
|
|
74
76
|
: availableIconsets.sick2018Icons;
|
package/dist/tools/version.js
CHANGED
|
@@ -9,7 +9,9 @@ export const versionTool = (server) => {
|
|
|
9
9
|
description: 'Get version and basic information about the Synergy Design System MCP Server',
|
|
10
10
|
inputSchema: {},
|
|
11
11
|
title: 'Synergy MCP Version Information',
|
|
12
|
-
},
|
|
12
|
+
},
|
|
13
|
+
// eslint-disable-next-line @typescript-eslint/require-await
|
|
14
|
+
async () => {
|
|
13
15
|
const packageJson = getPackageInfo();
|
|
14
16
|
const versionInfo = {
|
|
15
17
|
author: packageJson.author,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* eslint-disable no-restricted-syntax */
|
|
1
2
|
import { createHash } from 'node:crypto';
|
|
2
3
|
import { readFile, writeFile } from 'node:fs/promises';
|
|
3
4
|
import { join, relative } from 'node:path';
|
|
@@ -34,7 +35,6 @@ export async function createFolderChecksum(folderPath, options = {}) {
|
|
|
34
35
|
const hash = createHash(algorithm);
|
|
35
36
|
// Read and concatenate all file contents (equivalent to xargs -0 cat)
|
|
36
37
|
// Note: Sequential reading to maintain order consistency with shell script
|
|
37
|
-
// eslint-disable-next-line no-await-in-loop
|
|
38
38
|
for (const filePath of sortedFiles) {
|
|
39
39
|
// eslint-disable-next-line no-await-in-loop
|
|
40
40
|
const content = await readFile(filePath);
|
|
@@ -72,6 +72,7 @@ export async function verifyFolderChecksum(folderPath, options = {}) {
|
|
|
72
72
|
outputFile: undefined, // Don't write to file during verification
|
|
73
73
|
});
|
|
74
74
|
return storedChecksum === currentChecksum;
|
|
75
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
75
76
|
}
|
|
76
77
|
catch (error) {
|
|
77
78
|
// If we can't read the checksum file, consider it invalid
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
/* eslint-disable no-
|
|
2
|
+
/* eslint-disable @typescript-eslint/no-misused-promises */
|
|
3
3
|
import { runDocsScraper } from './docs-scraper.js';
|
|
4
4
|
import { StaticServerManager } from './storybook-manager.js';
|
|
5
5
|
// Parse command line arguments
|
|
@@ -39,4 +39,5 @@ process.on('SIGTERM', async () => {
|
|
|
39
39
|
await serverManager.stop();
|
|
40
40
|
process.exit(0);
|
|
41
41
|
});
|
|
42
|
+
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
42
43
|
main();
|
|
@@ -38,7 +38,7 @@ ${story.example}
|
|
|
38
38
|
},
|
|
39
39
|
generateOutputPath: (component) => `${staticComponentPath}/${component}/docs.md`,
|
|
40
40
|
generateStoryId: (component) => componentStories[component],
|
|
41
|
-
getItems: async () => Object.keys(componentStories),
|
|
41
|
+
getItems: async () => Promise.resolve(Object.keys(componentStories)),
|
|
42
42
|
outputPath: staticComponentPath,
|
|
43
43
|
};
|
|
44
44
|
/**
|
|
@@ -59,7 +59,7 @@ ${story.example}
|
|
|
59
59
|
},
|
|
60
60
|
generateOutputPath: (style) => `${staticStylesPath}/${style}.md`,
|
|
61
61
|
generateStoryId: (component) => styleStories[component],
|
|
62
|
-
getItems: async () => Object.keys(styleStories),
|
|
62
|
+
getItems: async () => Promise.resolve(Object.keys(styleStories)),
|
|
63
63
|
outputPath: staticStylesPath,
|
|
64
64
|
};
|
|
65
65
|
/**
|
|
@@ -80,6 +80,6 @@ ${story.example}
|
|
|
80
80
|
},
|
|
81
81
|
generateOutputPath: (template) => `${templatesPath}/${template}.md`,
|
|
82
82
|
generateStoryId: (component) => templateStories[component],
|
|
83
|
-
getItems: async () => Object.keys(templateStories),
|
|
83
|
+
getItems: async () => Promise.resolve(Object.keys(templateStories)),
|
|
84
84
|
outputPath: staticStylesPath,
|
|
85
85
|
};
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/* eslint-disable no-console */
|
|
2
1
|
import { dirname } from 'node:path';
|
|
3
2
|
import { mkdir, writeFile } from 'node:fs/promises';
|
|
4
3
|
import { chromium } from 'playwright';
|
|
@@ -95,9 +94,10 @@ export class StorybookScraper {
|
|
|
95
94
|
if (!exampleSource && storyMeta.hasIframe) {
|
|
96
95
|
try {
|
|
97
96
|
const storySection = page.locator('.sb-anchor').nth(storyMeta.index);
|
|
98
|
-
const frame =
|
|
97
|
+
const frame = storySection.frameLocator('iframe');
|
|
99
98
|
const frameContent = await frame.locator('#root-inner').innerHTML();
|
|
100
99
|
exampleSource = frameContent || '';
|
|
100
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
101
101
|
}
|
|
102
102
|
catch (error) {
|
|
103
103
|
// If iframe content extraction fails, continue with empty content
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
/* eslint-disable no-
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-misused-promises */
|
|
2
2
|
import { createServer } from 'http';
|
|
3
3
|
import { promisify } from 'node:util';
|
|
4
4
|
import { exec } from 'node:child_process';
|
|
5
5
|
import { dirname, resolve } from 'path';
|
|
6
6
|
import { fileURLToPath } from 'url';
|
|
7
|
-
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
8
7
|
import handler from 'serve-handler';
|
|
9
8
|
const execAsync = promisify(exec);
|
|
10
9
|
// Get current directory for resolving the Storybook build path
|
|
@@ -1,10 +1,28 @@
|
|
|
1
|
+
type MinimalPackageJson = {
|
|
2
|
+
author?: {
|
|
3
|
+
name?: string;
|
|
4
|
+
email?: string;
|
|
5
|
+
url?: string;
|
|
6
|
+
};
|
|
7
|
+
repository?: {
|
|
8
|
+
type: string;
|
|
9
|
+
url: string;
|
|
10
|
+
};
|
|
11
|
+
homepage?: string;
|
|
12
|
+
description: string;
|
|
13
|
+
name: string;
|
|
14
|
+
version: string;
|
|
15
|
+
license?: string;
|
|
16
|
+
[key: string]: unknown;
|
|
17
|
+
};
|
|
1
18
|
/**
|
|
2
19
|
* Gets the current package.json information for the MCP server.
|
|
3
20
|
* @returns The parsed package.json content
|
|
4
21
|
*/
|
|
5
|
-
export declare const getPackageInfo: () =>
|
|
22
|
+
export declare const getPackageInfo: () => MinimalPackageJson;
|
|
6
23
|
/**
|
|
7
24
|
* Gets the current version of the MCP server.
|
|
8
25
|
* @returns The version string from package.json
|
|
9
26
|
*/
|
|
10
|
-
export declare const getVersion: () =>
|
|
27
|
+
export declare const getVersion: () => string;
|
|
28
|
+
export {};
|
package/metadata/checksum.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
4a34881b13e76e90b40c4c3586cf3bc8
|
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.25.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1148](https://github.com/synergy-design-system/synergy-design-system/pull/1148) [`73b7011`](https://github.com/synergy-design-system/synergy-design-system/commit/73b70118ae21bc58c83cbfeb9e2e8447873803a6) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-01-08
|
|
8
|
+
|
|
9
|
+
fix: 🐛 Minor dependency updates (#258)
|
|
10
|
+
|
|
3
11
|
## 1.25.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -75,8 +75,12 @@ This will:
|
|
|
75
75
|
|
|
76
76
|
- Clean up the `src` directory
|
|
77
77
|
- download all icons from figma
|
|
78
|
-
- download all thumbnails for docs
|
|
79
78
|
- Recreate all default icons
|
|
80
79
|
- Create the migration iconsets for Synergy 2018 to 2025 via `pnpm create-migration-iconset`
|
|
81
80
|
- Recreate the license files in the different folders
|
|
82
81
|
- Create [code connect files](https://www.figma.com/code-connect-docs/html) for all icons. Please be aware you have to call `pnpm figma-export:icons` in the components package to publish the icons!
|
|
82
|
+
|
|
83
|
+
### Updating thumbnails
|
|
84
|
+
|
|
85
|
+
Updating thumbnails is quite intense and may lead to 429 rate limit request issues with the Figma API.
|
|
86
|
+
Therefore, this is not done automatically. You may use `pnpm build:with-thumbnails` for a full build including the thumbnails or `pnpm fetch-components-thumbnails` directly.
|
|
@@ -289,7 +289,7 @@ export default class SynSideNav extends SynergyElement {
|
|
|
289
289
|
|
|
290
290
|
// The originalTrigger needs to be removed, otherwise when closing the drawer,
|
|
291
291
|
// the first focused nav-item is focused again...
|
|
292
|
-
// eslint-disable-next-line
|
|
292
|
+
// eslint-disable-next-line dot-notation
|
|
293
293
|
this.drawer['originalTrigger'] = null;
|
|
294
294
|
}
|
|
295
295
|
});
|
|
@@ -365,6 +365,7 @@ export default class SynSideNav extends SynergyElement {
|
|
|
365
365
|
if (this.rail) {
|
|
366
366
|
// Add deprecation console warning for stakeholder, which do not use linting
|
|
367
367
|
// to get their attention
|
|
368
|
+
// eslint-disable-next-line no-console
|
|
368
369
|
console.warn('<syn-side-nav/>: The `rail` attribute is deprecated. Please use the `variant` attribute with `rail` instead. It will be removed in synergy version 3.0');
|
|
369
370
|
}
|
|
370
371
|
|
|
@@ -334,6 +334,7 @@ export default class SynValidate extends SynergyElement {
|
|
|
334
334
|
}
|
|
335
335
|
};
|
|
336
336
|
|
|
337
|
+
// eslint-disable-next-line @typescript-eslint/no-misused-promises
|
|
337
338
|
async firstUpdated(changedProperties: PropertyValues) {
|
|
338
339
|
super.firstUpdated(changedProperties);
|
|
339
340
|
this.updateEvents();
|
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.77.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1148](https://github.com/synergy-design-system/synergy-design-system/pull/1148) [`73b7011`](https://github.com/synergy-design-system/synergy-design-system/commit/73b70118ae21bc58c83cbfeb9e2e8447873803a6) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-01-08
|
|
8
|
+
|
|
9
|
+
fix: 🐛 Minor dependency updates (#258)
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`73b7011`](https://github.com/synergy-design-system/synergy-design-system/commit/73b70118ae21bc58c83cbfeb9e2e8447873803a6)]:
|
|
12
|
+
- @synergy-design-system/tokens@2.48.2
|
|
13
|
+
|
|
3
14
|
## 2.77.0
|
|
4
15
|
|
|
5
16
|
## 2.76.0
|
|
@@ -49,7 +49,7 @@ You may either load all of them in one bundle (recommended) or just include the
|
|
|
49
49
|
| Utility | Required? | Path | Description |
|
|
50
50
|
| :------ | :-------: | :------------------------ | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
51
51
|
| fouc | | `dist/styles/fouc.css` | Defaults for handling [Flash of Undefined Components (FOUC)](https://www.abeautifulsite.net/posts/flash-of-undefined-custom-elements/). Scoped to only target Synergy Components to make sure it does not overlap with other custom elements already defined. |
|
|
52
|
-
| utility |
|
|
52
|
+
| utility | ✔ | `dist/styles/utility.css` | Utilities that have to be in the light DOM to make Synergy work. For example, these include scroll locking for fullscreen components. **This is required, your application layout may break if not available**! |
|
|
53
53
|
|
|
54
54
|
##### 2.1. Loading all css utilities (recommended)
|
|
55
55
|
|
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1148](https://github.com/synergy-design-system/synergy-design-system/pull/1148) [`73b7011`](https://github.com/synergy-design-system/synergy-design-system/commit/73b70118ae21bc58c83cbfeb9e2e8447873803a6) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-01-08
|
|
8
|
+
|
|
9
|
+
fix: 🐛 Minor dependency updates (#258)
|
|
10
|
+
|
|
3
11
|
## 1.0.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
"devDependencies": {
|
|
8
8
|
"@synergy-design-system/eslint-config-syn": "workspace:^",
|
|
9
9
|
"@synergy-design-system/stylelint-config-syn": "workspace:^",
|
|
10
|
-
"eslint": "^
|
|
11
|
-
"ora": "^
|
|
10
|
+
"eslint": "^9.39.2",
|
|
11
|
+
"ora": "^9.0.0",
|
|
12
12
|
"postcss": "^8.5.6",
|
|
13
13
|
"postcss-header": "^3.0.3",
|
|
14
14
|
"postcss-import": "^16.1.1",
|
|
15
15
|
"postcss-url": "^10.1.3",
|
|
16
|
-
"stylelint": "^16.
|
|
16
|
+
"stylelint": "^16.26.1"
|
|
17
17
|
},
|
|
18
18
|
"exports": {
|
|
19
19
|
".": {
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"lint": "pnpm run /^lint:.*/"
|
|
69
69
|
},
|
|
70
70
|
"type": "module",
|
|
71
|
-
"version": "1.0.
|
|
71
|
+
"version": "1.0.2"
|
|
72
72
|
}
|
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.9.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1148](https://github.com/synergy-design-system/synergy-design-system/pull/1148) [`73b7011`](https://github.com/synergy-design-system/synergy-design-system/commit/73b70118ae21bc58c83cbfeb9e2e8447873803a6) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-01-08
|
|
8
|
+
|
|
9
|
+
fix: 🐛 Minor dependency updates (#258)
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`73b7011`](https://github.com/synergy-design-system/synergy-design-system/commit/73b70118ae21bc58c83cbfeb9e2e8447873803a6)]:
|
|
12
|
+
- @synergy-design-system/tokens@2.48.2
|
|
13
|
+
|
|
3
14
|
## 1.9.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.48.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1148](https://github.com/synergy-design-system/synergy-design-system/pull/1148) [`73b7011`](https://github.com/synergy-design-system/synergy-design-system/commit/73b70118ae21bc58c83cbfeb9e2e8447873803a6) Thanks [@schilchSICKAG](https://github.com/schilchSICKAG)! - Released on: 2026-01-08
|
|
8
|
+
|
|
9
|
+
fix: 🐛 Minor dependency updates (#258)
|
|
10
|
+
|
|
3
11
|
## 2.48.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -7,33 +7,33 @@
|
|
|
7
7
|
"syn-mcp": "./dist/bin/start.js"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
11
|
-
"globby": "^
|
|
10
|
+
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
11
|
+
"globby": "^16.1.0",
|
|
12
12
|
"zod": "^3.25.76",
|
|
13
|
-
"@synergy-design-system/assets": "1.25.
|
|
13
|
+
"@synergy-design-system/assets": "1.25.1"
|
|
14
14
|
},
|
|
15
15
|
"description": "MCP Server for the Synergy Design System",
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@types/jest": "^30.0.0",
|
|
18
|
-
"@types/node": "^
|
|
18
|
+
"@types/node": "^24.0.0",
|
|
19
19
|
"@types/serve-handler": "^6.1.4",
|
|
20
20
|
"change-case": "^5.4.4",
|
|
21
21
|
"custom-elements-manifest": "^2.1.0",
|
|
22
|
-
"eslint": "^
|
|
22
|
+
"eslint": "^9.39.2",
|
|
23
23
|
"jest": "^30.2.0",
|
|
24
|
-
"ora": "^
|
|
25
|
-
"playwright": "^1.
|
|
26
|
-
"prettier": "^3.
|
|
27
|
-
"rimraf": "^6.
|
|
24
|
+
"ora": "^9.0.0",
|
|
25
|
+
"playwright": "^1.57.0",
|
|
26
|
+
"prettier": "^3.7.4",
|
|
27
|
+
"rimraf": "^6.1.2",
|
|
28
28
|
"serve-handler": "^6.1.6",
|
|
29
|
-
"ts-jest": "^29.4.
|
|
29
|
+
"ts-jest": "^29.4.6",
|
|
30
30
|
"typescript": "^5.9.3",
|
|
31
|
-
"@synergy-design-system/components": "2.77.
|
|
31
|
+
"@synergy-design-system/components": "2.77.1",
|
|
32
32
|
"@synergy-design-system/docs": "0.1.0",
|
|
33
33
|
"@synergy-design-system/eslint-config-syn": "^0.1.0",
|
|
34
|
-
"@synergy-design-system/
|
|
35
|
-
"@synergy-design-system/
|
|
36
|
-
"@synergy-design-system/
|
|
34
|
+
"@synergy-design-system/fonts": "1.0.2",
|
|
35
|
+
"@synergy-design-system/styles": "1.9.1",
|
|
36
|
+
"@synergy-design-system/tokens": "^2.48.2"
|
|
37
37
|
},
|
|
38
38
|
"exports": {
|
|
39
39
|
".": {
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"directory": "packages/mcp"
|
|
68
68
|
},
|
|
69
69
|
"type": "module",
|
|
70
|
-
"version": "1.41.
|
|
70
|
+
"version": "1.41.2",
|
|
71
71
|
"scripts": {
|
|
72
72
|
"build": "pnpm run build:ts && pnpm run build:metadata && pnpm build:hash",
|
|
73
73
|
"build:all": "pnpm run build && pnpm run build:storybook",
|