Skip to content

Commit

Permalink
Dependency maintenance (#4431)
Browse files Browse the repository at this point in the history
* Bump actions related deps

* Bump babel related deps

* Bump various deps

* Bump biome/oxlint

* bump karma/esbuild

* Bump npm-merge-driver-install

* Bump mocha and sinon-chai

* add test comment for bundle size
  • Loading branch information
JoviDeCroock authored Jul 4, 2024
1 parent ef29b20 commit 82ab555
Show file tree
Hide file tree
Showing 6 changed files with 6,785 additions and 7,134 deletions.
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

0 comments on commit 82ab555

Please sign in to comment.