mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
[ci] yarn format
This commit is contained in:
parent
fb9a77b77f
commit
b8dbba6c4b
1 changed files with 4 additions and 4 deletions
|
@ -23,19 +23,19 @@ const rootDir = new URL('../../', import.meta.url);
|
|||
|
||||
/** Runs all smoke tests. */
|
||||
async function run() {
|
||||
const dirs = await getChildDirectories(scriptDir)
|
||||
const dirs = await getChildDirectories(scriptDir);
|
||||
|
||||
if (dirs.length) {
|
||||
console.log()
|
||||
console.log();
|
||||
|
||||
for (const dir of await getChildDirectories(scriptDir)) {
|
||||
console.log('🤖', 'Removing', dir.pathname.split('/').at(-1));
|
||||
|
||||
fs.rm(dir, { force: true, recursive: true })
|
||||
fs.rm(dir, { force: true, recursive: true });
|
||||
}
|
||||
}
|
||||
|
||||
console.log()
|
||||
console.log();
|
||||
|
||||
console.log('🤖', 'Resetting', 'yarn');
|
||||
|
||||
|
|
Loading…
Reference in a new issue