├── .eslintignore ├── .eslintrc.json ├── .github ├── FUNDING.yml └── workflows │ ├── ci.yml │ └── require-labels.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .idea └── workspace.xml ├── .npmignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── bin └── scripts.js ├── index.js ├── package.json ├── scripts ├── config │ ├── babelJestTransform.js │ ├── createJestConfig.js │ └── paths.js └── test.js ├── src ├── config.js ├── eslintrc.json ├── ts.eslintrc.json └── webpack.config.js └── tests ├── aliases-false ├── aliases-false.test.js ├── handler.js ├── package-lock.json ├── package.json └── serverless.yml ├── aliases-jest ├── .eslintrc.json ├── aliases-jest.test.js ├── handler.js ├── libs │ └── sum.js ├── package-lock.json ├── package.json ├── serverless.yml └── tests │ └── index.test.js ├── aliases ├── aliases.test.js ├── custom-lib │ └── src │ │ └── some-lib │ │ └── index.js ├── handler.js ├── package-lock.json ├── package.json └── serverless.yml ├── base ├── .gitignore ├── base.test.js ├── handler.js ├── package-lock.json ├── package.json └── serverless.yml ├── class-properties ├── .gitignore ├── class-properties.test.js ├── handler.js ├── package-lock.json ├── package.json └── serverless.yml ├── copy-files-individually-packaged ├── .gitignore ├── bin │ └── echo.sh ├── copy-files-individually-packaged.test.js ├── handler.js ├── package-lock.json ├── package.json ├── public │ └── test.txt ├── serverless.yml └── world.js ├── copy-files ├── .gitignore ├── bin │ └── echo.sh ├── copy-files.test.js ├── handler.js ├── package-lock.json ├── package.json ├── public │ └── test.txt ├── serverless.yml └── world.js ├── disable-eslint ├── .gitignore ├── disable-eslint.test.js ├── handler.js ├── package-lock.json ├── package.json └── serverless.yml ├── esbuild ├── .gitignore ├── esbuild.test.js ├── handler.js ├── package-lock.json ├── package.json └── serverless.yml ├── externals-all ├── externals-all.test.js ├── handler.js ├── package-lock.json ├── package.json └── serverless.yml ├── externals ├── .gitignore ├── externals.test.js ├── handler.js ├── package-lock.json ├── package.json └── serverless.yml ├── failed-eslint ├── .gitignore ├── include.js └── service │ ├── failed-eslint.test.js │ ├── handler.js │ ├── package-lock.json │ ├── package.json │ └── serverless.yml ├── fixpackages-formidable ├── fixpackages-formidable.test.js ├── handler.js ├── package-lock.json ├── package.json └── serverless.yml ├── force-exclude ├── force-exclude.test.js ├── handler.js ├── package-lock.json ├── package.json ├── serverless.node18.yml └── serverless.yml ├── generate-stats-files ├── generate-stats-file.test.js ├── handler.js ├── package-lock.json ├── package.json └── serverless.yml ├── helpers ├── clear-npm-cache.js ├── index.js ├── npm-install.js ├── remove-node-modules.js ├── run-jest-command.js ├── run-sls-command.js └── setup-tests.js ├── ignore-packages ├── handler.js ├── ignore-packages.test.js ├── package-lock.json ├── package.json └── serverless.yml ├── invalid-runtime ├── handler.js ├── invalid-runtime.test.js └── serverless.yml ├── isomorphic-loaders ├── .gitignore ├── assets │ ├── react.png │ ├── style.css │ └── style.scss ├── handler.js ├── isomorphic-loaders.test.js ├── package-lock.json ├── package.json └── serverless.yml ├── load-gql-files ├── .gitignore ├── load-gql-files.test.js ├── package-lock.json ├── package.json ├── serverless.yml └── src │ ├── global.d.ts │ ├── handler.ts │ ├── resolvers │ ├── ExampleResolver.ts │ └── index.ts │ └── schema │ ├── exampleSchema.gql │ ├── index.ts │ └── linkSchema.gql ├── minify-options ├── .gitignore ├── handler.js ├── minify-options.test.js ├── package-lock.json ├── package.json └── serverless.yml ├── nested-lambda ├── .gitignore ├── nested-lambda.test.js ├── package-lock.json ├── package.json ├── serverless.yml └── services │ └── main │ └── handler.js ├── nested-services ├── nested-services.test.js ├── package.json └── services │ └── service1 │ ├── handler.js │ └── serverless.yml ├── node-env ├── .gitignore ├── handler.js ├── node-env.test.js ├── package-lock.json ├── package.json └── serverless.yml ├── nullish-coalescing ├── .gitignore ├── handler.js ├── nullish-coalescing.test.js ├── package-lock.json ├── package.json └── serverless.yml ├── optional-chaining ├── .gitignore ├── handler.js ├── optional-chaining.test.js ├── package-lock.json ├── package.json └── serverless.yml ├── override-eslint ├── .eslintrc.json ├── .gitignore ├── handler.js ├── override-eslint.test.js ├── package-lock.json ├── package.json └── serverless.yml ├── raw-loader ├── .gitignore ├── assets │ ├── csv.csv │ ├── pem.pem │ └── text.txt ├── handler.js ├── package-lock.json ├── package.json ├── raw-loader.test.js └── serverless.yml ├── scripts ├── .env ├── asyncSum.js ├── package-lock.json ├── package.json ├── scripts.test.js ├── setup-tests.js └── tests │ └── index.test.js ├── typescript-config-path ├── handler.ts ├── package-lock.json ├── package.json ├── serverless.yml ├── tsconfig.special.json └── typescript-config-path.test.js ├── typescript-esbuild ├── custom-lib │ └── src │ │ └── some-lib │ │ └── index.ts ├── decorated-class.ts ├── handler.ts ├── package-lock.json ├── package.json ├── serverless.yml ├── tsconfig.json ├── tsx │ └── import.tsx └── typescript-esbuild.test.js ├── typescript-exclude-files ├── handler.spec.ts ├── handler.ts ├── package-lock.json ├── package.json ├── serverless.yml ├── tsconfig.json └── typescript-exclude-files.test.js ├── typescript-forkts-disabled ├── handler.ts ├── package-lock.json ├── package.json ├── serverless.yml ├── tsconfig.json └── typescript-forkts-disabled.test.js ├── typescript-invalid-module ├── handler.ts ├── package-lock.json ├── package.json ├── serverless.yml ├── tsconfig.json └── typescript-invalid-module.test.js ├── typescript-jest ├── handler.ts ├── package-lock.json ├── package.json ├── serverless.yml ├── tests │ └── index.test.ts ├── tsconfig.json └── typescript-jest.test.js ├── typescript-no-baseUrl ├── handler.ts ├── package-lock.json ├── package.json ├── serverless.yml ├── tsconfig.json └── typescript-no-baseUrl.test.js ├── typescript ├── custom-lib │ └── src │ │ └── some-lib │ │ └── index.ts ├── decorated-class.ts ├── handler.ts ├── package-lock.json ├── package.json ├── serverless.yml ├── tsconfig.json ├── tsx │ └── import.tsx └── typescript.test.js ├── with-eslintignore ├── .eslintignore ├── .gitignore ├── handler.js ├── package-lock.json ├── package.json ├── serverless.yml └── with-eslintignore.test.js ├── with-node14 ├── .gitignore ├── handler.js ├── serverless.yml └── with-node14.test.js ├── with-node16 ├── .gitignore ├── handler.js ├── serverless.yml └── with-node16.test.js ├── with-node18 ├── .gitignore ├── handler.js ├── serverless.yml └── with-node18.test.js └── with-node20 ├── .gitignore ├── handler.js ├── serverless.yml └── with-node20.test.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/require-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/.github/workflows/require-labels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/README.md -------------------------------------------------------------------------------- /bin/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/bin/scripts.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/package.json -------------------------------------------------------------------------------- /scripts/config/babelJestTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/scripts/config/babelJestTransform.js -------------------------------------------------------------------------------- /scripts/config/createJestConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/scripts/config/createJestConfig.js -------------------------------------------------------------------------------- /scripts/config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/scripts/config/paths.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/scripts/test.js -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/src/config.js -------------------------------------------------------------------------------- /src/eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/src/eslintrc.json -------------------------------------------------------------------------------- /src/ts.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/src/ts.eslintrc.json -------------------------------------------------------------------------------- /src/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/src/webpack.config.js -------------------------------------------------------------------------------- /tests/aliases-false/aliases-false.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/aliases-false/aliases-false.test.js -------------------------------------------------------------------------------- /tests/aliases-false/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/aliases-false/handler.js -------------------------------------------------------------------------------- /tests/aliases-false/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/aliases-false/package-lock.json -------------------------------------------------------------------------------- /tests/aliases-false/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/aliases-false/package.json -------------------------------------------------------------------------------- /tests/aliases-false/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/aliases-false/serverless.yml -------------------------------------------------------------------------------- /tests/aliases-jest/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/aliases-jest/.eslintrc.json -------------------------------------------------------------------------------- /tests/aliases-jest/aliases-jest.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/aliases-jest/aliases-jest.test.js -------------------------------------------------------------------------------- /tests/aliases-jest/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/aliases-jest/handler.js -------------------------------------------------------------------------------- /tests/aliases-jest/libs/sum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/aliases-jest/libs/sum.js -------------------------------------------------------------------------------- /tests/aliases-jest/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/aliases-jest/package-lock.json -------------------------------------------------------------------------------- /tests/aliases-jest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/aliases-jest/package.json -------------------------------------------------------------------------------- /tests/aliases-jest/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/aliases-jest/serverless.yml -------------------------------------------------------------------------------- /tests/aliases-jest/tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/aliases-jest/tests/index.test.js -------------------------------------------------------------------------------- /tests/aliases/aliases.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/aliases/aliases.test.js -------------------------------------------------------------------------------- /tests/aliases/custom-lib/src/some-lib/index.js: -------------------------------------------------------------------------------- 1 | export function doSomething() { 2 | return "done"; 3 | } 4 | -------------------------------------------------------------------------------- /tests/aliases/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/aliases/handler.js -------------------------------------------------------------------------------- /tests/aliases/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/aliases/package-lock.json -------------------------------------------------------------------------------- /tests/aliases/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/aliases/package.json -------------------------------------------------------------------------------- /tests/aliases/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/aliases/serverless.yml -------------------------------------------------------------------------------- /tests/base/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/base/.gitignore -------------------------------------------------------------------------------- /tests/base/base.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/base/base.test.js -------------------------------------------------------------------------------- /tests/base/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/base/handler.js -------------------------------------------------------------------------------- /tests/base/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/base/package-lock.json -------------------------------------------------------------------------------- /tests/base/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/base/package.json -------------------------------------------------------------------------------- /tests/base/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/base/serverless.yml -------------------------------------------------------------------------------- /tests/class-properties/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/class-properties/.gitignore -------------------------------------------------------------------------------- /tests/class-properties/class-properties.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/class-properties/class-properties.test.js -------------------------------------------------------------------------------- /tests/class-properties/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/class-properties/handler.js -------------------------------------------------------------------------------- /tests/class-properties/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/class-properties/package-lock.json -------------------------------------------------------------------------------- /tests/class-properties/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/class-properties/package.json -------------------------------------------------------------------------------- /tests/class-properties/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/class-properties/serverless.yml -------------------------------------------------------------------------------- /tests/copy-files-individually-packaged/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/copy-files-individually-packaged/.gitignore -------------------------------------------------------------------------------- /tests/copy-files-individually-packaged/bin/echo.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo $1 -------------------------------------------------------------------------------- /tests/copy-files-individually-packaged/copy-files-individually-packaged.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/copy-files-individually-packaged/copy-files-individually-packaged.test.js -------------------------------------------------------------------------------- /tests/copy-files-individually-packaged/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/copy-files-individually-packaged/handler.js -------------------------------------------------------------------------------- /tests/copy-files-individually-packaged/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/copy-files-individually-packaged/package-lock.json -------------------------------------------------------------------------------- /tests/copy-files-individually-packaged/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/copy-files-individually-packaged/package.json -------------------------------------------------------------------------------- /tests/copy-files-individually-packaged/public/test.txt: -------------------------------------------------------------------------------- 1 | Testing file 2 | -------------------------------------------------------------------------------- /tests/copy-files-individually-packaged/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/copy-files-individually-packaged/serverless.yml -------------------------------------------------------------------------------- /tests/copy-files-individually-packaged/world.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/copy-files-individually-packaged/world.js -------------------------------------------------------------------------------- /tests/copy-files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/copy-files/.gitignore -------------------------------------------------------------------------------- /tests/copy-files/bin/echo.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo $1 -------------------------------------------------------------------------------- /tests/copy-files/copy-files.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/copy-files/copy-files.test.js -------------------------------------------------------------------------------- /tests/copy-files/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/copy-files/handler.js -------------------------------------------------------------------------------- /tests/copy-files/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/copy-files/package-lock.json -------------------------------------------------------------------------------- /tests/copy-files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/copy-files/package.json -------------------------------------------------------------------------------- /tests/copy-files/public/test.txt: -------------------------------------------------------------------------------- 1 | Testing file 2 | -------------------------------------------------------------------------------- /tests/copy-files/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/copy-files/serverless.yml -------------------------------------------------------------------------------- /tests/copy-files/world.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/copy-files/world.js -------------------------------------------------------------------------------- /tests/disable-eslint/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/disable-eslint/.gitignore -------------------------------------------------------------------------------- /tests/disable-eslint/disable-eslint.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/disable-eslint/disable-eslint.test.js -------------------------------------------------------------------------------- /tests/disable-eslint/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/disable-eslint/handler.js -------------------------------------------------------------------------------- /tests/disable-eslint/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/disable-eslint/package-lock.json -------------------------------------------------------------------------------- /tests/disable-eslint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/disable-eslint/package.json -------------------------------------------------------------------------------- /tests/disable-eslint/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/disable-eslint/serverless.yml -------------------------------------------------------------------------------- /tests/esbuild/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/esbuild/.gitignore -------------------------------------------------------------------------------- /tests/esbuild/esbuild.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/esbuild/esbuild.test.js -------------------------------------------------------------------------------- /tests/esbuild/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/esbuild/handler.js -------------------------------------------------------------------------------- /tests/esbuild/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/esbuild/package-lock.json -------------------------------------------------------------------------------- /tests/esbuild/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/esbuild/package.json -------------------------------------------------------------------------------- /tests/esbuild/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/esbuild/serverless.yml -------------------------------------------------------------------------------- /tests/externals-all/externals-all.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/externals-all/externals-all.test.js -------------------------------------------------------------------------------- /tests/externals-all/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/externals-all/handler.js -------------------------------------------------------------------------------- /tests/externals-all/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/externals-all/package-lock.json -------------------------------------------------------------------------------- /tests/externals-all/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/externals-all/package.json -------------------------------------------------------------------------------- /tests/externals-all/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/externals-all/serverless.yml -------------------------------------------------------------------------------- /tests/externals/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/externals/.gitignore -------------------------------------------------------------------------------- /tests/externals/externals.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/externals/externals.test.js -------------------------------------------------------------------------------- /tests/externals/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/externals/handler.js -------------------------------------------------------------------------------- /tests/externals/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/externals/package-lock.json -------------------------------------------------------------------------------- /tests/externals/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/externals/package.json -------------------------------------------------------------------------------- /tests/externals/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/externals/serverless.yml -------------------------------------------------------------------------------- /tests/failed-eslint/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/failed-eslint/.gitignore -------------------------------------------------------------------------------- /tests/failed-eslint/include.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/failed-eslint/include.js -------------------------------------------------------------------------------- /tests/failed-eslint/service/failed-eslint.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/failed-eslint/service/failed-eslint.test.js -------------------------------------------------------------------------------- /tests/failed-eslint/service/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/failed-eslint/service/handler.js -------------------------------------------------------------------------------- /tests/failed-eslint/service/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/failed-eslint/service/package-lock.json -------------------------------------------------------------------------------- /tests/failed-eslint/service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/failed-eslint/service/package.json -------------------------------------------------------------------------------- /tests/failed-eslint/service/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/failed-eslint/service/serverless.yml -------------------------------------------------------------------------------- /tests/fixpackages-formidable/fixpackages-formidable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/fixpackages-formidable/fixpackages-formidable.test.js -------------------------------------------------------------------------------- /tests/fixpackages-formidable/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/fixpackages-formidable/handler.js -------------------------------------------------------------------------------- /tests/fixpackages-formidable/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/fixpackages-formidable/package-lock.json -------------------------------------------------------------------------------- /tests/fixpackages-formidable/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/fixpackages-formidable/package.json -------------------------------------------------------------------------------- /tests/fixpackages-formidable/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/fixpackages-formidable/serverless.yml -------------------------------------------------------------------------------- /tests/force-exclude/force-exclude.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/force-exclude/force-exclude.test.js -------------------------------------------------------------------------------- /tests/force-exclude/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/force-exclude/handler.js -------------------------------------------------------------------------------- /tests/force-exclude/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/force-exclude/package-lock.json -------------------------------------------------------------------------------- /tests/force-exclude/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/force-exclude/package.json -------------------------------------------------------------------------------- /tests/force-exclude/serverless.node18.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/force-exclude/serverless.node18.yml -------------------------------------------------------------------------------- /tests/force-exclude/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/force-exclude/serverless.yml -------------------------------------------------------------------------------- /tests/generate-stats-files/generate-stats-file.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/generate-stats-files/generate-stats-file.test.js -------------------------------------------------------------------------------- /tests/generate-stats-files/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/generate-stats-files/handler.js -------------------------------------------------------------------------------- /tests/generate-stats-files/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/generate-stats-files/package-lock.json -------------------------------------------------------------------------------- /tests/generate-stats-files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/generate-stats-files/package.json -------------------------------------------------------------------------------- /tests/generate-stats-files/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/generate-stats-files/serverless.yml -------------------------------------------------------------------------------- /tests/helpers/clear-npm-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/helpers/clear-npm-cache.js -------------------------------------------------------------------------------- /tests/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/helpers/index.js -------------------------------------------------------------------------------- /tests/helpers/npm-install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/helpers/npm-install.js -------------------------------------------------------------------------------- /tests/helpers/remove-node-modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/helpers/remove-node-modules.js -------------------------------------------------------------------------------- /tests/helpers/run-jest-command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/helpers/run-jest-command.js -------------------------------------------------------------------------------- /tests/helpers/run-sls-command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/helpers/run-sls-command.js -------------------------------------------------------------------------------- /tests/helpers/setup-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/helpers/setup-tests.js -------------------------------------------------------------------------------- /tests/ignore-packages/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/ignore-packages/handler.js -------------------------------------------------------------------------------- /tests/ignore-packages/ignore-packages.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/ignore-packages/ignore-packages.test.js -------------------------------------------------------------------------------- /tests/ignore-packages/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/ignore-packages/package-lock.json -------------------------------------------------------------------------------- /tests/ignore-packages/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/ignore-packages/package.json -------------------------------------------------------------------------------- /tests/ignore-packages/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/ignore-packages/serverless.yml -------------------------------------------------------------------------------- /tests/invalid-runtime/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/invalid-runtime/handler.js -------------------------------------------------------------------------------- /tests/invalid-runtime/invalid-runtime.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/invalid-runtime/invalid-runtime.test.js -------------------------------------------------------------------------------- /tests/invalid-runtime/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/invalid-runtime/serverless.yml -------------------------------------------------------------------------------- /tests/isomorphic-loaders/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/isomorphic-loaders/.gitignore -------------------------------------------------------------------------------- /tests/isomorphic-loaders/assets/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/isomorphic-loaders/assets/react.png -------------------------------------------------------------------------------- /tests/isomorphic-loaders/assets/style.css: -------------------------------------------------------------------------------- 1 | html { 2 | background-color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /tests/isomorphic-loaders/assets/style.scss: -------------------------------------------------------------------------------- 1 | html { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /tests/isomorphic-loaders/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/isomorphic-loaders/handler.js -------------------------------------------------------------------------------- /tests/isomorphic-loaders/isomorphic-loaders.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/isomorphic-loaders/isomorphic-loaders.test.js -------------------------------------------------------------------------------- /tests/isomorphic-loaders/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/isomorphic-loaders/package-lock.json -------------------------------------------------------------------------------- /tests/isomorphic-loaders/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/isomorphic-loaders/package.json -------------------------------------------------------------------------------- /tests/isomorphic-loaders/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/isomorphic-loaders/serverless.yml -------------------------------------------------------------------------------- /tests/load-gql-files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/load-gql-files/.gitignore -------------------------------------------------------------------------------- /tests/load-gql-files/load-gql-files.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/load-gql-files/load-gql-files.test.js -------------------------------------------------------------------------------- /tests/load-gql-files/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/load-gql-files/package-lock.json -------------------------------------------------------------------------------- /tests/load-gql-files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/load-gql-files/package.json -------------------------------------------------------------------------------- /tests/load-gql-files/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/load-gql-files/serverless.yml -------------------------------------------------------------------------------- /tests/load-gql-files/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/load-gql-files/src/global.d.ts -------------------------------------------------------------------------------- /tests/load-gql-files/src/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/load-gql-files/src/handler.ts -------------------------------------------------------------------------------- /tests/load-gql-files/src/resolvers/ExampleResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/load-gql-files/src/resolvers/ExampleResolver.ts -------------------------------------------------------------------------------- /tests/load-gql-files/src/resolvers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/load-gql-files/src/resolvers/index.ts -------------------------------------------------------------------------------- /tests/load-gql-files/src/schema/exampleSchema.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/load-gql-files/src/schema/exampleSchema.gql -------------------------------------------------------------------------------- /tests/load-gql-files/src/schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/load-gql-files/src/schema/index.ts -------------------------------------------------------------------------------- /tests/load-gql-files/src/schema/linkSchema.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/load-gql-files/src/schema/linkSchema.gql -------------------------------------------------------------------------------- /tests/minify-options/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/minify-options/.gitignore -------------------------------------------------------------------------------- /tests/minify-options/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/minify-options/handler.js -------------------------------------------------------------------------------- /tests/minify-options/minify-options.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/minify-options/minify-options.test.js -------------------------------------------------------------------------------- /tests/minify-options/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/minify-options/package-lock.json -------------------------------------------------------------------------------- /tests/minify-options/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/minify-options/package.json -------------------------------------------------------------------------------- /tests/minify-options/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/minify-options/serverless.yml -------------------------------------------------------------------------------- /tests/nested-lambda/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/nested-lambda/.gitignore -------------------------------------------------------------------------------- /tests/nested-lambda/nested-lambda.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/nested-lambda/nested-lambda.test.js -------------------------------------------------------------------------------- /tests/nested-lambda/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/nested-lambda/package-lock.json -------------------------------------------------------------------------------- /tests/nested-lambda/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/nested-lambda/package.json -------------------------------------------------------------------------------- /tests/nested-lambda/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/nested-lambda/serverless.yml -------------------------------------------------------------------------------- /tests/nested-lambda/services/main/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/nested-lambda/services/main/handler.js -------------------------------------------------------------------------------- /tests/nested-services/nested-services.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/nested-services/nested-services.test.js -------------------------------------------------------------------------------- /tests/nested-services/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/nested-services/package.json -------------------------------------------------------------------------------- /tests/nested-services/services/service1/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/nested-services/services/service1/handler.js -------------------------------------------------------------------------------- /tests/nested-services/services/service1/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/nested-services/services/service1/serverless.yml -------------------------------------------------------------------------------- /tests/node-env/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/node-env/.gitignore -------------------------------------------------------------------------------- /tests/node-env/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/node-env/handler.js -------------------------------------------------------------------------------- /tests/node-env/node-env.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/node-env/node-env.test.js -------------------------------------------------------------------------------- /tests/node-env/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/node-env/package-lock.json -------------------------------------------------------------------------------- /tests/node-env/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/node-env/package.json -------------------------------------------------------------------------------- /tests/node-env/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/node-env/serverless.yml -------------------------------------------------------------------------------- /tests/nullish-coalescing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/nullish-coalescing/.gitignore -------------------------------------------------------------------------------- /tests/nullish-coalescing/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/nullish-coalescing/handler.js -------------------------------------------------------------------------------- /tests/nullish-coalescing/nullish-coalescing.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/nullish-coalescing/nullish-coalescing.test.js -------------------------------------------------------------------------------- /tests/nullish-coalescing/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/nullish-coalescing/package-lock.json -------------------------------------------------------------------------------- /tests/nullish-coalescing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/nullish-coalescing/package.json -------------------------------------------------------------------------------- /tests/nullish-coalescing/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/nullish-coalescing/serverless.yml -------------------------------------------------------------------------------- /tests/optional-chaining/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/optional-chaining/.gitignore -------------------------------------------------------------------------------- /tests/optional-chaining/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/optional-chaining/handler.js -------------------------------------------------------------------------------- /tests/optional-chaining/optional-chaining.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/optional-chaining/optional-chaining.test.js -------------------------------------------------------------------------------- /tests/optional-chaining/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/optional-chaining/package-lock.json -------------------------------------------------------------------------------- /tests/optional-chaining/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/optional-chaining/package.json -------------------------------------------------------------------------------- /tests/optional-chaining/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/optional-chaining/serverless.yml -------------------------------------------------------------------------------- /tests/override-eslint/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/override-eslint/.eslintrc.json -------------------------------------------------------------------------------- /tests/override-eslint/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/override-eslint/.gitignore -------------------------------------------------------------------------------- /tests/override-eslint/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/override-eslint/handler.js -------------------------------------------------------------------------------- /tests/override-eslint/override-eslint.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/override-eslint/override-eslint.test.js -------------------------------------------------------------------------------- /tests/override-eslint/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/override-eslint/package-lock.json -------------------------------------------------------------------------------- /tests/override-eslint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/override-eslint/package.json -------------------------------------------------------------------------------- /tests/override-eslint/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/override-eslint/serverless.yml -------------------------------------------------------------------------------- /tests/raw-loader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/raw-loader/.gitignore -------------------------------------------------------------------------------- /tests/raw-loader/assets/csv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/raw-loader/assets/csv.csv -------------------------------------------------------------------------------- /tests/raw-loader/assets/pem.pem: -------------------------------------------------------------------------------- 1 | Raw loader file 2 | -------------------------------------------------------------------------------- /tests/raw-loader/assets/text.txt: -------------------------------------------------------------------------------- 1 | Raw loader file 2 | -------------------------------------------------------------------------------- /tests/raw-loader/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/raw-loader/handler.js -------------------------------------------------------------------------------- /tests/raw-loader/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/raw-loader/package-lock.json -------------------------------------------------------------------------------- /tests/raw-loader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/raw-loader/package.json -------------------------------------------------------------------------------- /tests/raw-loader/raw-loader.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/raw-loader/raw-loader.test.js -------------------------------------------------------------------------------- /tests/raw-loader/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/raw-loader/serverless.yml -------------------------------------------------------------------------------- /tests/scripts/.env: -------------------------------------------------------------------------------- 1 | # We need to commit this file for the test 2 | TEST_VALUE=123 3 | -------------------------------------------------------------------------------- /tests/scripts/asyncSum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/scripts/asyncSum.js -------------------------------------------------------------------------------- /tests/scripts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/scripts/package-lock.json -------------------------------------------------------------------------------- /tests/scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/scripts/package.json -------------------------------------------------------------------------------- /tests/scripts/scripts.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/scripts/scripts.test.js -------------------------------------------------------------------------------- /tests/scripts/setup-tests.js: -------------------------------------------------------------------------------- 1 | console.log("Running 'setupFilesAfterEnv'"); // eslint-disable-line 2 | -------------------------------------------------------------------------------- /tests/scripts/tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/scripts/tests/index.test.js -------------------------------------------------------------------------------- /tests/typescript-config-path/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-config-path/handler.ts -------------------------------------------------------------------------------- /tests/typescript-config-path/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-config-path/package-lock.json -------------------------------------------------------------------------------- /tests/typescript-config-path/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-config-path/package.json -------------------------------------------------------------------------------- /tests/typescript-config-path/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-config-path/serverless.yml -------------------------------------------------------------------------------- /tests/typescript-config-path/tsconfig.special.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-config-path/tsconfig.special.json -------------------------------------------------------------------------------- /tests/typescript-config-path/typescript-config-path.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-config-path/typescript-config-path.test.js -------------------------------------------------------------------------------- /tests/typescript-esbuild/custom-lib/src/some-lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-esbuild/custom-lib/src/some-lib/index.ts -------------------------------------------------------------------------------- /tests/typescript-esbuild/decorated-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-esbuild/decorated-class.ts -------------------------------------------------------------------------------- /tests/typescript-esbuild/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-esbuild/handler.ts -------------------------------------------------------------------------------- /tests/typescript-esbuild/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-esbuild/package-lock.json -------------------------------------------------------------------------------- /tests/typescript-esbuild/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-esbuild/package.json -------------------------------------------------------------------------------- /tests/typescript-esbuild/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-esbuild/serverless.yml -------------------------------------------------------------------------------- /tests/typescript-esbuild/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-esbuild/tsconfig.json -------------------------------------------------------------------------------- /tests/typescript-esbuild/tsx/import.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-esbuild/tsx/import.tsx -------------------------------------------------------------------------------- /tests/typescript-esbuild/typescript-esbuild.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-esbuild/typescript-esbuild.test.js -------------------------------------------------------------------------------- /tests/typescript-exclude-files/handler.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/typescript-exclude-files/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-exclude-files/handler.ts -------------------------------------------------------------------------------- /tests/typescript-exclude-files/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-exclude-files/package-lock.json -------------------------------------------------------------------------------- /tests/typescript-exclude-files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-exclude-files/package.json -------------------------------------------------------------------------------- /tests/typescript-exclude-files/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-exclude-files/serverless.yml -------------------------------------------------------------------------------- /tests/typescript-exclude-files/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-exclude-files/tsconfig.json -------------------------------------------------------------------------------- /tests/typescript-exclude-files/typescript-exclude-files.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-exclude-files/typescript-exclude-files.test.js -------------------------------------------------------------------------------- /tests/typescript-forkts-disabled/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-forkts-disabled/handler.ts -------------------------------------------------------------------------------- /tests/typescript-forkts-disabled/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-forkts-disabled/package-lock.json -------------------------------------------------------------------------------- /tests/typescript-forkts-disabled/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-forkts-disabled/package.json -------------------------------------------------------------------------------- /tests/typescript-forkts-disabled/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-forkts-disabled/serverless.yml -------------------------------------------------------------------------------- /tests/typescript-forkts-disabled/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-forkts-disabled/tsconfig.json -------------------------------------------------------------------------------- /tests/typescript-forkts-disabled/typescript-forkts-disabled.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-forkts-disabled/typescript-forkts-disabled.test.js -------------------------------------------------------------------------------- /tests/typescript-invalid-module/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-invalid-module/handler.ts -------------------------------------------------------------------------------- /tests/typescript-invalid-module/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-invalid-module/package-lock.json -------------------------------------------------------------------------------- /tests/typescript-invalid-module/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-invalid-module/package.json -------------------------------------------------------------------------------- /tests/typescript-invalid-module/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-invalid-module/serverless.yml -------------------------------------------------------------------------------- /tests/typescript-invalid-module/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-invalid-module/tsconfig.json -------------------------------------------------------------------------------- /tests/typescript-invalid-module/typescript-invalid-module.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-invalid-module/typescript-invalid-module.test.js -------------------------------------------------------------------------------- /tests/typescript-jest/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-jest/handler.ts -------------------------------------------------------------------------------- /tests/typescript-jest/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-jest/package-lock.json -------------------------------------------------------------------------------- /tests/typescript-jest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-jest/package.json -------------------------------------------------------------------------------- /tests/typescript-jest/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-jest/serverless.yml -------------------------------------------------------------------------------- /tests/typescript-jest/tests/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-jest/tests/index.test.ts -------------------------------------------------------------------------------- /tests/typescript-jest/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-jest/tsconfig.json -------------------------------------------------------------------------------- /tests/typescript-jest/typescript-jest.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-jest/typescript-jest.test.js -------------------------------------------------------------------------------- /tests/typescript-no-baseUrl/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-no-baseUrl/handler.ts -------------------------------------------------------------------------------- /tests/typescript-no-baseUrl/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-no-baseUrl/package-lock.json -------------------------------------------------------------------------------- /tests/typescript-no-baseUrl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-no-baseUrl/package.json -------------------------------------------------------------------------------- /tests/typescript-no-baseUrl/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-no-baseUrl/serverless.yml -------------------------------------------------------------------------------- /tests/typescript-no-baseUrl/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-no-baseUrl/tsconfig.json -------------------------------------------------------------------------------- /tests/typescript-no-baseUrl/typescript-no-baseUrl.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript-no-baseUrl/typescript-no-baseUrl.test.js -------------------------------------------------------------------------------- /tests/typescript/custom-lib/src/some-lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript/custom-lib/src/some-lib/index.ts -------------------------------------------------------------------------------- /tests/typescript/decorated-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript/decorated-class.ts -------------------------------------------------------------------------------- /tests/typescript/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript/handler.ts -------------------------------------------------------------------------------- /tests/typescript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript/package-lock.json -------------------------------------------------------------------------------- /tests/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript/package.json -------------------------------------------------------------------------------- /tests/typescript/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript/serverless.yml -------------------------------------------------------------------------------- /tests/typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript/tsconfig.json -------------------------------------------------------------------------------- /tests/typescript/tsx/import.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript/tsx/import.tsx -------------------------------------------------------------------------------- /tests/typescript/typescript.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/typescript/typescript.test.js -------------------------------------------------------------------------------- /tests/with-eslintignore/.eslintignore: -------------------------------------------------------------------------------- 1 | handler.js 2 | -------------------------------------------------------------------------------- /tests/with-eslintignore/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-eslintignore/.gitignore -------------------------------------------------------------------------------- /tests/with-eslintignore/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-eslintignore/handler.js -------------------------------------------------------------------------------- /tests/with-eslintignore/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-eslintignore/package-lock.json -------------------------------------------------------------------------------- /tests/with-eslintignore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-eslintignore/package.json -------------------------------------------------------------------------------- /tests/with-eslintignore/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-eslintignore/serverless.yml -------------------------------------------------------------------------------- /tests/with-eslintignore/with-eslintignore.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-eslintignore/with-eslintignore.test.js -------------------------------------------------------------------------------- /tests/with-node14/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-node14/.gitignore -------------------------------------------------------------------------------- /tests/with-node14/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-node14/handler.js -------------------------------------------------------------------------------- /tests/with-node14/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-node14/serverless.yml -------------------------------------------------------------------------------- /tests/with-node14/with-node14.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-node14/with-node14.test.js -------------------------------------------------------------------------------- /tests/with-node16/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-node16/.gitignore -------------------------------------------------------------------------------- /tests/with-node16/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-node16/handler.js -------------------------------------------------------------------------------- /tests/with-node16/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-node16/serverless.yml -------------------------------------------------------------------------------- /tests/with-node16/with-node16.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-node16/with-node16.test.js -------------------------------------------------------------------------------- /tests/with-node18/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-node18/.gitignore -------------------------------------------------------------------------------- /tests/with-node18/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-node18/handler.js -------------------------------------------------------------------------------- /tests/with-node18/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-node18/serverless.yml -------------------------------------------------------------------------------- /tests/with-node18/with-node18.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-node18/with-node18.test.js -------------------------------------------------------------------------------- /tests/with-node20/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-node20/.gitignore -------------------------------------------------------------------------------- /tests/with-node20/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-node20/handler.js -------------------------------------------------------------------------------- /tests/with-node20/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-node20/serverless.yml -------------------------------------------------------------------------------- /tests/with-node20/with-node20.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnomalyInnovations/serverless-bundle/HEAD/tests/with-node20/with-node20.test.js --------------------------------------------------------------------------------