Replies: 1 comment
-
I think this page covers it: https://deno.land/manual@v1.24.3/tools/script_installer Previous discussions: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
What is the recommend entry for CLI app in deno?
https://github.com/golang-standards/project-layout
REPO/cmd/hello-world/main.ts
?Simple, but what about multi entry?
REPO/cmd/hello-world/hello.ts
?REPO/cmd/hello-world/world.ts
?REPO/cmd/hello/main.ts
?REPO/cmd/world/main.ts
?REPO/pkg/hello-world/cmd/hello.ts
?REPO/pkg/hello-world/cmd/world.ts
?REPO/pkg/hello-world/cmd/hello/main.ts
?REPO/pkg/hello-world/cmd/world/main.ts
?Beta Was this translation helpful? Give feedback.
All reactions