0.2.0 • Published 4 months ago

@dtrlanz/gas-bundler v0.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

GAS Bundler

A simple bundler for Google Apps Script


Install

npm install @dtrlanz/gas-bundler --save-dev

Usage

This bundler calls esbuild's build function to bundle Google Apps Script projects. However, instead of passing the project entry points, it separates them into server and client entry points based on file extension.

Client side entry points are bundled using a plugin that inlines ECMAScript Modules into <script> tags.

After installing the package, set up a build script build.js.

await build({
    entryPoints: ['src/server.ts', 'src/client.html'],
    outdir: 'out',
});

Then run it as follows:

node ./build.js

With the exception of entryPoints, all other options are passed directly to esbuild (potentially overriding defaults provided by this package). See the esbuild documentation.

Use cases

Google Apps Script projects that serve HTML in any form (e.g., web apps, side panels) include these in the form of .html files. Client-side code typically has to be contained directly in these files or included from dedicated .html files with <script> tags (see Separate HTML, CSS, and JavaScript). This setup has several drawbacks. In particular, it makes it more difficult to develop client-side code in Typescript, and it inhibits sharing code between server and client.

Moreover, Google Apps Script does not support ECMAScript Modules.

This package seeks to address those issues by using esbuild to bundle projects with approporiate default options and a customized HTML plugin that inlines client-side code.

Client-side scripts

The HTML loader will inline client-side scripts when bundling HTML files. These script tags must have the attribute type="module".

For example, say you have the following file client.html:

<!DOCTYPE html>
<html>
  <head><meta charset="utf-8"></head>
  <body>
    <script type="module">
        import { message } from './client-script.ts';
        console.log(message);
    </script>
  </body>
</html>

The relevant code would be contained in a file client-script.ts in the same folder:

export const message = 'Hello world';

License

GAS Bundler is released under the MIT license.

0.2.0

4 months ago

0.1.5

5 months ago

0.1.4

5 months ago

0.1.3

5 months ago

0.1.2

5 months ago

0.1.1

5 months ago

0.1.0

5 months ago