We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 536be64 commit 8ac13f7Copy full SHA for 8ac13f7
playgrounds/sandbox/run.js
@@ -63,11 +63,18 @@ for (const generate of /** @type {const} */ (['client', 'server'])) {
63
runes: argv.values.runes
64
});
65
66
+ for (const warning of compiled.warnings) {
67
+ console.warn(warning.code);
68
+ console.warn(warning.frame);
69
+ }
70
+
71
fs.writeFileSync(
72
output_js,
73
compiled.js.code + '\n//# sourceMappingURL=' + path.basename(output_map)
74
);
75
76
fs.writeFileSync(output_map, compiled.js.map.toString());
77
78
if (compiled.css) {
79
fs.writeFileSync(output_css, compiled.css.code);
80
}
0 commit comments