├── .clasp.json ├── .gitignore ├── LICENSE ├── README.md ├── appsscript.json ├── package.json ├── renovate.json ├── src └── index.js └── webpack.config.js /.clasp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tani/gas-minimal-boilerplate/HEAD/.clasp.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tani/gas-minimal-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tani/gas-minimal-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tani/gas-minimal-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /appsscript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tani/gas-minimal-boilerplate/HEAD/appsscript.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tani/gas-minimal-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tani/gas-minimal-boilerplate/HEAD/renovate.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | global.main = function() { 2 | Logger.log("Hello, world!"); 3 | }; -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tani/gas-minimal-boilerplate/HEAD/webpack.config.js --------------------------------------------------------------------------------