[ci] yarn format
This commit is contained in:
parent
180dfcf2fc
commit
76195ba404
3 changed files with 8 additions and 7 deletions
|
@ -265,7 +265,8 @@ export function vitePluginNewBuild(input: Set<string>, internals: BuildInternals
|
||||||
|
|
||||||
config(config, options) {
|
config(config, options) {
|
||||||
const extra: Partial<UserConfig> = {};
|
const extra: Partial<UserConfig> = {};
|
||||||
const noExternal = [], external = [];
|
const noExternal = [],
|
||||||
|
external = [];
|
||||||
if (options.command === 'build' && config.build?.ssr) {
|
if (options.command === 'build' && config.build?.ssr) {
|
||||||
noExternal.push('astro');
|
noExternal.push('astro');
|
||||||
external.push('shiki');
|
external.push('shiki');
|
||||||
|
@ -273,7 +274,8 @@ export function vitePluginNewBuild(input: Set<string>, internals: BuildInternals
|
||||||
|
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
extra.ssr = {
|
extra.ssr = {
|
||||||
external, noExternal
|
external,
|
||||||
|
noExternal,
|
||||||
};
|
};
|
||||||
return extra;
|
return extra;
|
||||||
},
|
},
|
||||||
|
|
|
@ -5,14 +5,13 @@ import { loadFixture } from './test-utils.js';
|
||||||
describe('Code component inside static build', () => {
|
describe('Code component inside static build', () => {
|
||||||
let fixture;
|
let fixture;
|
||||||
|
|
||||||
|
|
||||||
before(async () => {
|
before(async () => {
|
||||||
fixture = await loadFixture({
|
fixture = await loadFixture({
|
||||||
projectRoot: './fixtures/static-build-code-component/',
|
projectRoot: './fixtures/static-build-code-component/',
|
||||||
renderers: [],
|
renderers: [],
|
||||||
buildOptions: {
|
buildOptions: {
|
||||||
experimentalStaticBuild: true,
|
experimentalStaticBuild: true,
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
await fixture.build();
|
await fixture.build();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue