[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. */
|
/** Runs all smoke tests. */
|
||||||
async function run() {
|
async function run() {
|
||||||
const dirs = await getChildDirectories(scriptDir)
|
const dirs = await getChildDirectories(scriptDir);
|
||||||
|
|
||||||
if (dirs.length) {
|
if (dirs.length) {
|
||||||
console.log()
|
console.log();
|
||||||
|
|
||||||
for (const dir of await getChildDirectories(scriptDir)) {
|
for (const dir of await getChildDirectories(scriptDir)) {
|
||||||
console.log('🤖', 'Removing', dir.pathname.split('/').at(-1));
|
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');
|
console.log('🤖', 'Resetting', 'yarn');
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue