diff options
author | 2023-05-11 22:58:41 -0400 | |
---|---|---|
committer | 2023-05-11 22:58:41 -0400 | |
commit | dfd0f3e2527daffa06da791ccaed7dfe3240963e (patch) | |
tree | 535d9c676190d50e04194d78d2efba98ee9317cb /src/bun.js/builtins/cpp/BundlerPluginBuiltins.h | |
parent | 136b50c74639cb1f583435a318d283028ee57dc5 (diff) | |
download | bun-dfd0f3e2527daffa06da791ccaed7dfe3240963e.tar.gz bun-dfd0f3e2527daffa06da791ccaed7dfe3240963e.tar.zst bun-dfd0f3e2527daffa06da791ccaed7dfe3240963e.zip |
Allow reading config from within plugins, and partially implement esbuild `initialOptions` (#2861)
* Implement plugin build.config and initialOptions
* update types
* default initialoptions entrypoints
Diffstat (limited to 'src/bun.js/builtins/cpp/BundlerPluginBuiltins.h')
-rw-r--r-- | src/bun.js/builtins/cpp/BundlerPluginBuiltins.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bun.js/builtins/cpp/BundlerPluginBuiltins.h b/src/bun.js/builtins/cpp/BundlerPluginBuiltins.h index 91b3233f2..d1fdaf4ec 100644 --- a/src/bun.js/builtins/cpp/BundlerPluginBuiltins.h +++ b/src/bun.js/builtins/cpp/BundlerPluginBuiltins.h @@ -65,7 +65,7 @@ extern const JSC::ImplementationVisibility s_bundlerPluginRunOnLoadPluginsCodeIm #define WEBCORE_FOREACH_BUNDLERPLUGIN_BUILTIN_DATA(macro) \ macro(runOnResolvePlugins, bundlerPluginRunOnResolvePlugins, 5) \ - macro(runSetupFunction, bundlerPluginRunSetupFunction, 1) \ + macro(runSetupFunction, bundlerPluginRunSetupFunction, 2) \ macro(runOnLoadPlugins, bundlerPluginRunOnLoadPlugins, 4) \ #define WEBCORE_BUILTIN_BUNDLERPLUGIN_RUNONRESOLVEPLUGINS 1 |