Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"formatter": {
"jsxQuoteStyle": "double",
"quoteProperties": "asNeeded",
"trailingComma": "none",
"trailingCommas": "none",
"semicolons": "always",
"arrowParentheses": "asNeeded",
"bracketSpacing": true,
Expand Down
2 changes: 1 addition & 1 deletion compat/server.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export {
renderToString as renderToStaticMarkup
} from 'preact-render-to-string';

export { renderToPipeableStream } from 'preact-render-to-string/stream-node'
export { renderToPipeableStream } from 'preact-render-to-string/stream-node';

export default {
renderToString,
Expand Down
4 changes: 2 additions & 2 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -340,9 +340,9 @@ module.exports = function (config) {
// esbuild options
target: downlevel ? 'es5' : 'es2015',
define: {
COVERAGE: coverage,
COVERAGE: JSON.stringify(coverage),
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV || ''),
ENABLE_PERFORMANCE: performance
ENABLE_PERFORMANCE: JSON.stringify(performance)
},
plugins: [createEsbuildPlugin()]
}
Expand Down
Loading