@bazel/esbuild
Advanced tools
Comparing version
@@ -5,3 +5,3 @@ { | ||
"license": "Apache-2.0", | ||
"version": "3.4.2", | ||
"version": "3.5.0", | ||
"repository": { | ||
@@ -8,0 +8,0 @@ "type": "git", |
@@ -120,5 +120,5 @@ | ||
<pre> | ||
esbuild(<a href="#esbuild-name">name</a>, <a href="#esbuild-args">args</a>, <a href="#esbuild-define">define</a>, <a href="#esbuild-deps">deps</a>, <a href="#esbuild-entry_point">entry_point</a>, <a href="#esbuild-external">external</a>, <a href="#esbuild-format">format</a>, <a href="#esbuild-launcher">launcher</a>, <a href="#esbuild-link_workspace_root">link_workspace_root</a>, | ||
<a href="#esbuild-max_threads">max_threads</a>, <a href="#esbuild-minify">minify</a>, <a href="#esbuild-output">output</a>, <a href="#esbuild-output_css">output_css</a>, <a href="#esbuild-output_dir">output_dir</a>, <a href="#esbuild-output_map">output_map</a>, <a href="#esbuild-platform">platform</a>, <a href="#esbuild-sourcemap">sourcemap</a>, | ||
<a href="#esbuild-sources_content">sources_content</a>, <a href="#esbuild-srcs">srcs</a>, <a href="#esbuild-target">target</a>, <a href="#esbuild-tool">tool</a>) | ||
esbuild(<a href="#esbuild-name">name</a>, <a href="#esbuild-args">args</a>, <a href="#esbuild-define">define</a>, <a href="#esbuild-deps">deps</a>, <a href="#esbuild-entry_point">entry_point</a>, <a href="#esbuild-entry_points">entry_points</a>, <a href="#esbuild-external">external</a>, <a href="#esbuild-format">format</a>, <a href="#esbuild-launcher">launcher</a>, | ||
<a href="#esbuild-link_workspace_root">link_workspace_root</a>, <a href="#esbuild-max_threads">max_threads</a>, <a href="#esbuild-minify">minify</a>, <a href="#esbuild-output">output</a>, <a href="#esbuild-output_css">output_css</a>, <a href="#esbuild-output_dir">output_dir</a>, <a href="#esbuild-output_map">output_map</a>, | ||
<a href="#esbuild-platform">platform</a>, <a href="#esbuild-sourcemap">sourcemap</a>, <a href="#esbuild-sources_content">sources_content</a>, <a href="#esbuild-srcs">srcs</a>, <a href="#esbuild-target">target</a>, <a href="#esbuild-tool">tool</a>) | ||
</pre> | ||
@@ -171,5 +171,17 @@ | ||
(*<a href="https://bazel.build/docs/build-ref.html#labels">Label</a>, mandatory*): The bundle's entry point (e.g. your main.js or app.js or index.js) | ||
(*<a href="https://bazel.build/docs/build-ref.html#labels">Label</a>*): The bundle's entry point (e.g. your main.js or app.js or index.js) | ||
This is a shortcut for the `entry_points` attribute with a single entry. | ||
Specify either this attribute or `entry_point`, but not both. | ||
Defaults to `None` | ||
<h4 id="esbuild-entry_points">entry_points</h4> | ||
(*<a href="https://bazel.build/docs/build-ref.html#labels">List of labels</a>*): The bundle's entry points (e.g. your main.js or app.js or index.js) | ||
Specify either this attribute or `entry_point`, but not both. | ||
Defaults to `[]` | ||
<h4 id="esbuild-external">external</h4> | ||
@@ -186,3 +198,3 @@ | ||
(*String*): The output format of the bundle, defaults to iife when platform is browser | ||
and cjs when platform is node. If performing code splitting, defaults to esm. | ||
and cjs when platform is node. If performing code splitting or multiple entry_points are specified, defaults to esm. | ||
@@ -240,5 +252,5 @@ See https://esbuild.github.io/api/#format for more details | ||
(*Boolean*): If true, esbuild produces an output directory containing all the output files from code splitting | ||
(*Boolean*): If true, esbuild produces an output directory containing all the output files from code splitting for multiple entry points | ||
See https://esbuild.github.io/api/#splitting for more details | ||
See https://esbuild.github.io/api/#splitting and https://esbuild.github.io/api/#entry-points for more details | ||
@@ -245,0 +257,0 @@ Defaults to `False` |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
42702
6.38%305
4.1%