chore: disable swc minify (#2809)

* chore: disable minify

* test: fix deno test
This commit is contained in:
Jonathan Ho
2023-03-01 09:25:40 -08:00
committed by GitHub
parent dd699768eb
commit 9347b57ec9
9 changed files with 17 additions and 73 deletions

View File

@@ -4,7 +4,7 @@ const dirs = ['']
for await (const dir of dirs) {
await Promise.all(
fs.readdirSync(`denoTestsDist${dir}`).map(async (file) => {
if (!file.endsWith('.js')) {
if (!file.endsWith('.js') && !file.endsWith('.map') && !file.endsWith('.ts')) {
dirs.push(`${dir}/${file}`)
return
}