diff --git a/.gitignore b/.gitignore index 04813a6..c21b004 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,6 @@ .DS_Store .AppleDouble .LSOverride -*.bundle.ts bundles/*.bundle.ts # Icon must end with two \r diff --git a/bundles/helloworld-bundle-2.ts b/bundles/helloworld-bundle-2.ts deleted file mode 100644 index 9acc213..0000000 --- a/bundles/helloworld-bundle-2.ts +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env runts -- --allow-import - -import {log} from "../libraries/deno-commons-mod.ts"; - -// deno bundle --allow-import helloworld-bundle-2.ts -o helloworld-bundle-2.bundle.ts -async function main() { - log.info("Hello World!"); -} - -main().catch(console.error);