[ci] format
This commit is contained in:
parent
b36ecb717e
commit
16cdfeef81
1 changed files with 5 additions and 5 deletions
|
@ -1,9 +1,9 @@
|
|||
import { partytownSnippet } from '@builder.io/partytown/integration';
|
||||
import { copyLibFiles, libDirPath } from '@builder.io/partytown/utils';
|
||||
import type { AstroConfig, AstroIntegration } from 'astro';
|
||||
import * as fs from 'fs';
|
||||
import { createRequire } from 'module';
|
||||
import path from 'path';
|
||||
import * as fs from 'fs';
|
||||
import { fileURLToPath } from 'url';
|
||||
import sirv from './sirv.js';
|
||||
const resolve = createRequire(import.meta.url).resolve;
|
||||
|
@ -56,9 +56,9 @@ export default function createPlugin(options: PartytownOptions): AstroIntegratio
|
|||
const files = await fs.promises.readdir(dirpath);
|
||||
for (const file of files) {
|
||||
if (file === 'debug') continue;
|
||||
manifest.assets.push(`/~partytown/${file}`)
|
||||
}
|
||||
manifest.assets.push(`/~partytown/${file}`);
|
||||
}
|
||||
},
|
||||
},
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue