Skip to content

Commit f21ea95

Browse files
committed
build(deps): Bumped dependencies and fixed error reporting
1 parent b9a5275 commit f21ea95

File tree

7 files changed

+172
-172
lines changed

7 files changed

+172
-172
lines changed

package-lock.json

Lines changed: 156 additions & 156 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -60,19 +60,19 @@
6060
"lit": "^3.3.1"
6161
},
6262
"devDependencies": {
63-
"@biomejs/biome": "~2.3.3",
63+
"@biomejs/biome": "~2.3.5",
6464
"@custom-elements-manifest/analyzer": "^0.11.0",
6565
"@igniteui/material-icons-extended": "^3.1.0",
6666
"@open-wc/testing": "^4.0.0",
67-
"@storybook/addon-a11y": "^10.0.4",
68-
"@storybook/addon-docs": "^10.0.4",
69-
"@storybook/addon-links": "^10.0.4",
70-
"@storybook/web-components-vite": "^10.0.4",
67+
"@storybook/addon-a11y": "^10.0.7",
68+
"@storybook/addon-docs": "^10.0.7",
69+
"@storybook/addon-links": "^10.0.7",
70+
"@storybook/web-components-vite": "^10.0.7",
7171
"@types/mocha": "^10.0.10",
7272
"@web/dev-server-esbuild": "^1.0.4",
7373
"@web/test-runner": "^0.20.2",
7474
"@web/test-runner-playwright": "^0.11.1",
75-
"autoprefixer": "^10.4.21",
75+
"autoprefixer": "^10.4.22",
7676
"browser-sync": "^3.0.4",
7777
"cem-plugin-expanded-types": "^1.4.0",
7878
"concurrently": "^9.2.1",
@@ -94,7 +94,7 @@
9494
"rimraf": "^6.1.0",
9595
"sass-embedded": "~1.93.3",
9696
"sinon": "^21.0.0",
97-
"storybook": "^10.0.4",
97+
"storybook": "^10.0.7",
9898
"stylelint": "^16.25.0",
9999
"stylelint-config-standard-scss": "^16.0.0",
100100
"stylelint-prettier": "^5.0.3",
@@ -104,13 +104,13 @@
104104
"typedoc": "~0.28.14",
105105
"typedoc-plugin-localization": "^3.1.0",
106106
"typescript": "^5.9.3",
107-
"vite": "^7.2.0"
107+
"vite": "^7.2.2"
108108
},
109109
"peerDependencies": {
110110
"dompurify": "^3.3.0",
111-
"marked": "^16.4.1",
111+
"marked": "^17.0.0",
112112
"marked-shiki": "^1.2.1",
113-
"shiki": "^3.14.0"
113+
"shiki": "^3.15.0"
114114
},
115115
"browserslist": [
116116
"defaults"

scripts/build-typedoc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,6 @@ async function main() {
148148
try {
149149
await main();
150150
} catch (e) {
151-
report.error(e);
151+
report.error(e.message ?? e.toString());
152152
process.exit(1);
153153
}

scripts/build.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ async function runTask(tag, cmd) {
3434
report.stdout.clearLine();
3535
report.stdout.success(`[${tag}] Done\n`);
3636
} catch (e) {
37-
report.error(`[${tag}] Failed with: ${e}`);
37+
report.error(`[${tag}] Failed with: ${e.message}`);
3838
}
3939
}
4040

scripts/sass.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export async function buildThemes(isProduction = false) {
7474
);
7575
} catch (err) {
7676
await compiler.dispose();
77-
report.error(err);
77+
report.error(err.message ?? err.toString());
7878
process.exit(1);
7979
}
8080

@@ -114,7 +114,7 @@ export async function buildComponents(isProduction = false) {
114114
);
115115
} catch (err) {
116116
await compiler.dispose();
117-
report.error(err);
117+
report.error(err.message ?? err.toString());
118118
process.exit(1);
119119
}
120120

scripts/stories-watcher.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ async function addToQueue(fileName) {
3333
updating = false;
3434
report.info('Metadata build completed. Stories updated.');
3535
} catch (e) {
36-
report.error('ERROR:', e);
36+
report.error('ERROR:', e.message);
3737
}
3838
}
3939

scripts/styles-watcher.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const watcher = watch(['src'], watchOptions, async (_, fileName) => {
2929
'utf8'
3030
);
3131
} catch (err) {
32-
report.error(err);
32+
report.error(err.message ?? err.toString());
3333
}
3434

3535
report.success('Styles rebuilt 🎨');

0 commit comments

Comments
 (0)