Bundle Deno scripts into a single script
Note: This module is a thin wrapper of esbuild and esbuild-deno-loader.
deno -A jsr:@kt3k/pack [-h|-v] [-o <filename>] [--external <module>] [--format cjs|esm] <input-file>
-hShow help message and exit.-vShow version number and exit.-o <filename>Specify the output file name. If not specified, the bundle is output to stdout.--external <module>Specify the external modules. The external modules are not bundled, but are left as import statements in the output. You can specify multiple --external options like--external foo --external bar.--fromat esm|cjsSpecify the output format. Default is esm.
MIT