[ci] yarn format
This commit is contained in:
parent
20eaddb2a7
commit
b3150121d1
3 changed files with 12 additions and 14 deletions
|
@ -8,10 +8,7 @@ describe('Static build - frameworks', () => {
|
|||
before(async () => {
|
||||
fixture = await loadFixture({
|
||||
projectRoot: './fixtures/static-build-frameworks/',
|
||||
renderers: [
|
||||
'@astrojs/renderer-preact',
|
||||
'@astrojs/renderer-react'
|
||||
],
|
||||
renderers: ['@astrojs/renderer-preact', '@astrojs/renderer-react'],
|
||||
buildOptions: {
|
||||
experimentalStaticBuild: true,
|
||||
},
|
||||
|
|
|
@ -8,10 +8,15 @@ export default {
|
|||
default: { default: jsx },
|
||||
} = await import('@babel/plugin-transform-react-jsx');
|
||||
return {
|
||||
plugins: [jsx({}, {
|
||||
runtime: 'automatic',
|
||||
importSource: '@astrojs/renderer-react'
|
||||
})],
|
||||
plugins: [
|
||||
jsx(
|
||||
{},
|
||||
{
|
||||
runtime: 'automatic',
|
||||
importSource: '@astrojs/renderer-react',
|
||||
}
|
||||
),
|
||||
],
|
||||
};
|
||||
},
|
||||
viteConfig() {
|
||||
|
|
|
@ -2,11 +2,7 @@
|
|||
// it can run in Node ESM. 'react' doesn't declare this module as an export map
|
||||
// So we have to use the .js. The .js is not added via the babel automatic JSX transform
|
||||
// hence this module as a workaround.
|
||||
import jsxr from 'react/jsx-runtime.js';
|
||||
import jsxr from 'react/jsx-runtime.js';
|
||||
const { jsx, jsxs, Fragment } = jsxr;
|
||||
|
||||
export {
|
||||
jsx,
|
||||
jsxs,
|
||||
Fragment
|
||||
};
|
||||
export { jsx, jsxs, Fragment };
|
||||
|
|
Loading…
Reference in a new issue