mahaker / esbuild-gas-plugin

esbuild plugin for Google Apps Script.
MIT License
33 stars 7 forks source link

(multi entry points support) Added support for cases where outdir is specified #22

Open ryusuke410 opened 3 months ago

ryusuke410 commented 3 months ago

Google Apps Script (GAS) has a file size limitation, which makes it prone to hitting this limit when bundling everything into a single file. To work around this, it's common to split the output into multiple files by specifying multiple files in the entryPoints option of esbuild or using a glob pattern like */.ts. Therefore, esbuild-gas-plugin needs to support cases where there are multiple output files.

mahaker commented 3 months ago

Thank you for your contribution!

Google Apps Script (GAS) has a file size limitation

Could you please tell me the source for this?