Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/takker99/esbuild-deno-cli
CLI wrapper of esbuild and esbuild-deno-loader
https://github.com/takker99/esbuild-deno-cli
bundler deno esbuild
Last synced: about 1 month ago
JSON representation
CLI wrapper of esbuild and esbuild-deno-loader
- Host: GitHub
- URL: https://github.com/takker99/esbuild-deno-cli
- Owner: takker99
- License: mit
- Created: 2024-08-14T01:27:37.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-29T14:38:47.000Z (about 2 months ago)
- Last Synced: 2024-09-30T18:40:49.158Z (about 2 months ago)
- Topics: bundler, deno, esbuild
- Language: TypeScript
- Homepage: https://jsr.io/@takker/esbuild-deno-cli
- Size: 62.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @takker/esbuild
[![JSR](https://jsr.io/badges/@takker/esbuild-deno-cli)](https://jsr.io/@takker/esbuild-deno-cli)
[![test](https://github.com/takker99/esbuild-deno-cli/workflows/ci/badge.svg)](https://github.com/takker99/esbuild-deno-cli/actions?query=workflow%3Aci)[Esbuild](https://github.com/evanw/esbuild) CLI wrapper with
[esbuild-deno-loader](https://jsr.io/@luca/esbuild-deno-loader) CLI wrapper of
esbuild and esbuild-deno-loader# Usage
```
Usage: esbuild-deno-cli [entry-points...]Description:
Build JS/TS/JSX/TSX codes following Deno-style imports by esbuild
Options:
-h, --help - Show this help.
-V, --version - Show the version number for this program.General options:
--bundle - Bundle all dependencies into the output files
--minify - Minify the output (sets all --minify-* flags)
--platform - Platform target (Default: "browser", Values: "browser", "node", "neutral")
--serve - Start a local HTTP server on this host:port for outputs
--tsconfig - Use this tsconfig.json file instead of other ones (Conflicts: --tsconfig-raw)
--tsconfig-raw - Override all tsconfig.json files with this string (Conflicts: --tsconfig)
--watch - Watch mode: rebuild on file system changes (stops when stdin is closed)Deno options:
--config - Path to the Deno configuration file. If it is not specified, the default
configuration file in the current directory is used.
--no-config - Do not use any Deno configuration file.
--import-map - Path to the import map file.
--lock - Path to the lock file. If it is not specified but the Deno configuration file is
used, Find the lock file in the same directory as the Deno configuration file.
--node-modules-dir - Equivalent to the "--node-modules-dir" flag to Deno
```For full documentation, run
```sh
deno run jsr:@takker/esbuild-deno-cli --help
```