├── .github ├── dependabot.yml └── workflows │ ├── close-stale-issue.yml │ └── test.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── eslint.config.js ├── index.js ├── package.json ├── test ├── fix-411.test.js ├── fixtures-esm │ ├── echo.js │ ├── hello │ │ ├── foo.js │ │ └── world.js │ └── main.js ├── fixtures-fix-411 │ ├── echo.ts │ ├── main.ts │ ├── shim.d.ts │ └── tsconfig.json ├── fixtures-include │ ├── echo.js │ └── main.js ├── fixtures │ ├── echo.js │ └── main.js ├── include.test.js ├── index.test.js ├── package-lock.json └── package.json └── types.d.ts /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/close-stale-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/.github/workflows/close-stale-issue.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .tap 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/package.json -------------------------------------------------------------------------------- /test/fix-411.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/test/fix-411.test.js -------------------------------------------------------------------------------- /test/fixtures-esm/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/test/fixtures-esm/echo.js -------------------------------------------------------------------------------- /test/fixtures-esm/hello/foo.js: -------------------------------------------------------------------------------- 1 | export const foo = () => 'foo'; 2 | -------------------------------------------------------------------------------- /test/fixtures-esm/hello/world.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/test/fixtures-esm/hello/world.js -------------------------------------------------------------------------------- /test/fixtures-esm/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/test/fixtures-esm/main.js -------------------------------------------------------------------------------- /test/fixtures-fix-411/echo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/test/fixtures-fix-411/echo.ts -------------------------------------------------------------------------------- /test/fixtures-fix-411/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/test/fixtures-fix-411/main.ts -------------------------------------------------------------------------------- /test/fixtures-fix-411/shim.d.ts: -------------------------------------------------------------------------------- 1 | declare var global: any; -------------------------------------------------------------------------------- /test/fixtures-fix-411/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/test/fixtures-fix-411/tsconfig.json -------------------------------------------------------------------------------- /test/fixtures-include/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/test/fixtures-include/echo.js -------------------------------------------------------------------------------- /test/fixtures-include/main.js: -------------------------------------------------------------------------------- 1 | require("./echo"); 2 | 3 | global.hi = function () { 4 | } -------------------------------------------------------------------------------- /test/fixtures/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/test/fixtures/echo.js -------------------------------------------------------------------------------- /test/fixtures/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/test/fixtures/main.js -------------------------------------------------------------------------------- /test/include.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/test/include.test.js -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/test/index.test.js -------------------------------------------------------------------------------- /test/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/test/package-lock.json -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/test/package.json -------------------------------------------------------------------------------- /types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossamagna/gas-webpack-plugin/HEAD/types.d.ts --------------------------------------------------------------------------------