Mark scripts as modules to avoid global name collision (#991)

This commit is contained in:
Marshall Polaris 2022-10-03 14:21:21 -07:00 committed by GitHub
parent 42cc07e4a6
commit 9a950dc080
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -50,3 +50,5 @@ async function main() {
}
}
main()
export {}

View File

@ -61,3 +61,5 @@ async function main() {
}
}
main()
export {}