├── .github ├── dependabot.yml └── workflows │ ├── on-push.yml │ └── on-release.yml ├── .gitignore ├── .yarn └── releases │ └── yarn-4.9.2.cjs ├── .yarnrc.yml ├── AGENT.md ├── BENCHMARK.md ├── CHANGELOG.md ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── biome.json ├── index.js ├── media ├── cover.png └── cover.svg ├── package.json ├── test ├── __fixtures__ │ ├── js-nm-individually │ │ ├── .gitignore │ │ ├── .prettierignore │ │ ├── .yarn │ │ │ └── releases │ │ │ │ └── yarn-3.2.1.cjs │ │ ├── .yarnrc.yml │ │ ├── framework │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── handlers │ │ │ ├── handler │ │ │ │ └── index.js │ │ │ ├── hello │ │ │ │ ├── handler.js │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ └── world │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── out │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── package.json │ │ ├── serverless.js │ │ └── yarn.lock │ ├── js-nm-single │ │ ├── .gitignore │ │ ├── .prettierignore │ │ ├── .yarn │ │ │ └── releases │ │ │ │ └── yarn-3.2.1.cjs │ │ ├── .yarnrc.yml │ │ ├── framework │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── handlers │ │ │ ├── handler │ │ │ │ └── index.js │ │ │ ├── hello │ │ │ │ ├── handler.js │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ └── world │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── out │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── package.json │ │ ├── serverless.js │ │ └── yarn.lock │ ├── js-pnp-individually │ │ ├── .gitignore │ │ ├── .prettierignore │ │ ├── .yarn │ │ │ └── releases │ │ │ │ └── yarn-3.2.1.cjs │ │ ├── .yarnrc.yml │ │ ├── framework │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── handlers │ │ │ ├── handler │ │ │ │ └── index.js │ │ │ ├── hello │ │ │ │ ├── handler.js │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ └── world │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── out │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── package.json │ │ ├── serverless.js │ │ └── yarn.lock │ ├── js-pnp-single │ │ ├── .gitignore │ │ ├── .prettierignore │ │ ├── .yarn │ │ │ └── releases │ │ │ │ └── yarn-3.2.1.cjs │ │ ├── .yarnrc.yml │ │ ├── framework │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── handlers │ │ │ ├── handler │ │ │ │ └── index.js │ │ │ ├── hello │ │ │ │ ├── handler.js │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ └── world │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── out │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── package.json │ │ ├── serverless.js │ │ └── yarn.lock │ ├── package.json │ ├── ts-nm-individually │ │ ├── .gitignore │ │ ├── .prettierignore │ │ ├── .yarn │ │ │ └── releases │ │ │ │ └── yarn-3.2.1.cjs │ │ ├── .yarnrc.yml │ │ ├── framework │ │ │ ├── index.ts │ │ │ └── package.json │ │ ├── handlers │ │ │ ├── handler │ │ │ │ └── index.ts │ │ │ ├── hello │ │ │ │ ├── handler.ts │ │ │ │ ├── index.ts │ │ │ │ ├── package.json │ │ │ │ └── tsconfig.json │ │ │ └── world │ │ │ │ ├── index.ts │ │ │ │ ├── package.json │ │ │ │ └── tsconfig.json │ │ ├── out │ │ │ ├── index.ts │ │ │ └── package.json │ │ ├── package.json │ │ ├── serverless.js │ │ ├── tsconfig.json │ │ └── yarn.lock │ ├── ts-nm-single │ │ ├── .gitignore │ │ ├── .prettierignore │ │ ├── .yarn │ │ │ └── releases │ │ │ │ └── yarn-3.2.1.cjs │ │ ├── .yarnrc.yml │ │ ├── framework │ │ │ ├── index.ts │ │ │ └── package.json │ │ ├── handlers │ │ │ ├── handler │ │ │ │ └── index.ts │ │ │ ├── hello │ │ │ │ ├── handler.ts │ │ │ │ ├── index.ts │ │ │ │ ├── package.json │ │ │ │ └── tsconfig.json │ │ │ └── world │ │ │ │ ├── index.ts │ │ │ │ ├── package.json │ │ │ │ └── tsconfig.json │ │ ├── out │ │ │ ├── index.ts │ │ │ └── package.json │ │ ├── package.json │ │ ├── serverless.js │ │ ├── tsconfig.json │ │ └── yarn.lock │ ├── ts-pnp-individually │ │ ├── .gitignore │ │ ├── .prettierignore │ │ ├── .yarn │ │ │ └── releases │ │ │ │ └── yarn-3.2.1.cjs │ │ ├── .yarnrc.yml │ │ ├── framework │ │ │ ├── index.ts │ │ │ └── package.json │ │ ├── handlers │ │ │ ├── handler │ │ │ │ └── index.ts │ │ │ ├── hello │ │ │ │ ├── handler.ts │ │ │ │ ├── index.ts │ │ │ │ ├── package.json │ │ │ │ └── tsconfig.json │ │ │ └── world │ │ │ │ ├── index.ts │ │ │ │ ├── package.json │ │ │ │ └── tsconfig.json │ │ ├── out │ │ │ ├── index.ts │ │ │ └── package.json │ │ ├── package.json │ │ ├── serverless.js │ │ ├── tsconfig.json │ │ └── yarn.lock │ └── ts-pnp-single │ │ ├── .gitignore │ │ ├── .prettierignore │ │ ├── .yarn │ │ └── releases │ │ │ └── yarn-3.2.1.cjs │ │ ├── .yarnrc.yml │ │ ├── framework │ │ ├── index.ts │ │ └── package.json │ │ ├── handlers │ │ ├── handler │ │ │ └── index.ts │ │ ├── hello │ │ │ ├── handler.ts │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ └── world │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ ├── out │ │ ├── index.ts │ │ └── package.json │ │ ├── package.json │ │ ├── serverless.js │ │ ├── tsconfig.json │ │ └── yarn.lock ├── benchmark.js ├── index.js ├── index.js.snapshot └── setup.js └── yarn.lock /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/on-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/.github/workflows/on-push.yml -------------------------------------------------------------------------------- /.github/workflows/on-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/.github/workflows/on-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/.gitignore -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.9.2.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/.yarn/releases/yarn-4.9.2.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /AGENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/AGENT.md -------------------------------------------------------------------------------- /BENCHMARK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/BENCHMARK.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- 1 | AGENT.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/biome.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/index.js -------------------------------------------------------------------------------- /media/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/media/cover.png -------------------------------------------------------------------------------- /media/cover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/media/cover.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/package.json -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-individually/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-individually/.gitignore -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-individually/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-individually/.prettierignore -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-individually/.yarn/releases/yarn-3.2.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-individually/.yarn/releases/yarn-3.2.1.cjs -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-individually/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-individually/.yarnrc.yml -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-individually/framework/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-individually/framework/index.js -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-individually/framework/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-individually/framework/package.json -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-individually/handlers/handler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-individually/handlers/handler/index.js -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-individually/handlers/hello/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-individually/handlers/hello/handler.js -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-individually/handlers/hello/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-individually/handlers/hello/index.js -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-individually/handlers/hello/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-individually/handlers/hello/package.json -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-individually/handlers/world/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-individually/handlers/world/index.js -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-individually/handlers/world/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-individually/handlers/world/package.json -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-individually/out/index.js: -------------------------------------------------------------------------------- 1 | export const statusCode = 200; 2 | -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-individually/out/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-individually/out/package.json -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-individually/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-individually/package.json -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-individually/serverless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-individually/serverless.js -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-individually/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-individually/yarn.lock -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-single/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-single/.gitignore -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-single/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-single/.prettierignore -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-single/.yarn/releases/yarn-3.2.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-single/.yarn/releases/yarn-3.2.1.cjs -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-single/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-single/.yarnrc.yml -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-single/framework/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-single/framework/index.js -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-single/framework/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-single/framework/package.json -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-single/handlers/handler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-single/handlers/handler/index.js -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-single/handlers/hello/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-single/handlers/hello/handler.js -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-single/handlers/hello/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-single/handlers/hello/index.js -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-single/handlers/hello/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-single/handlers/hello/package.json -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-single/handlers/world/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-single/handlers/world/index.js -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-single/handlers/world/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-single/handlers/world/package.json -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-single/out/index.js: -------------------------------------------------------------------------------- 1 | export const statusCode = 200; 2 | -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-single/out/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-single/out/package.json -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-single/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-single/package.json -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-single/serverless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-single/serverless.js -------------------------------------------------------------------------------- /test/__fixtures__/js-nm-single/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-nm-single/yarn.lock -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-individually/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-individually/.gitignore -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-individually/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-individually/.prettierignore -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-individually/.yarn/releases/yarn-3.2.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-individually/.yarn/releases/yarn-3.2.1.cjs -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-individually/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-individually/.yarnrc.yml -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-individually/framework/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-individually/framework/index.js -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-individually/framework/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-individually/framework/package.json -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-individually/handlers/handler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-individually/handlers/handler/index.js -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-individually/handlers/hello/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-individually/handlers/hello/handler.js -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-individually/handlers/hello/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-individually/handlers/hello/index.js -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-individually/handlers/hello/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-individually/handlers/hello/package.json -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-individually/handlers/world/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-individually/handlers/world/index.js -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-individually/handlers/world/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-individually/handlers/world/package.json -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-individually/out/index.js: -------------------------------------------------------------------------------- 1 | export const statusCode = 200; 2 | -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-individually/out/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-individually/out/package.json -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-individually/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-individually/package.json -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-individually/serverless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-individually/serverless.js -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-individually/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-individually/yarn.lock -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-single/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-single/.gitignore -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-single/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-single/.prettierignore -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-single/.yarn/releases/yarn-3.2.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-single/.yarn/releases/yarn-3.2.1.cjs -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-single/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-single/.yarnrc.yml -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-single/framework/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-single/framework/index.js -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-single/framework/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-single/framework/package.json -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-single/handlers/handler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-single/handlers/handler/index.js -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-single/handlers/hello/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-single/handlers/hello/handler.js -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-single/handlers/hello/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-single/handlers/hello/index.js -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-single/handlers/hello/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-single/handlers/hello/package.json -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-single/handlers/world/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-single/handlers/world/index.js -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-single/handlers/world/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-single/handlers/world/package.json -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-single/out/index.js: -------------------------------------------------------------------------------- 1 | export const statusCode = 200; 2 | -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-single/out/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-single/out/package.json -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-single/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-single/package.json -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-single/serverless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-single/serverless.js -------------------------------------------------------------------------------- /test/__fixtures__/js-pnp-single/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/js-pnp-single/yarn.lock -------------------------------------------------------------------------------- /test/__fixtures__/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "trick-yarn-ws" 3 | } 4 | -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-individually/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-individually/.gitignore -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-individually/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-individually/.prettierignore -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-individually/.yarn/releases/yarn-3.2.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-individually/.yarn/releases/yarn-3.2.1.cjs -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-individually/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-individually/.yarnrc.yml -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-individually/framework/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-individually/framework/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-individually/framework/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-individually/framework/package.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-individually/handlers/handler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-individually/handlers/handler/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-individually/handlers/hello/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-individually/handlers/hello/handler.ts -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-individually/handlers/hello/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-individually/handlers/hello/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-individually/handlers/hello/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-individually/handlers/hello/package.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-individually/handlers/hello/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-individually/handlers/world/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-individually/handlers/world/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-individually/handlers/world/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-individually/handlers/world/package.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-individually/handlers/world/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-individually/out/index.ts: -------------------------------------------------------------------------------- 1 | export const statusCode = 200; 2 | -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-individually/out/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-individually/out/package.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-individually/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-individually/package.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-individually/serverless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-individually/serverless.js -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-individually/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-individually/tsconfig.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-individually/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-individually/yarn.lock -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-single/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-single/.gitignore -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-single/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-single/.prettierignore -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-single/.yarn/releases/yarn-3.2.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-single/.yarn/releases/yarn-3.2.1.cjs -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-single/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-single/.yarnrc.yml -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-single/framework/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-single/framework/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-single/framework/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-single/framework/package.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-single/handlers/handler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-single/handlers/handler/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-single/handlers/hello/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-single/handlers/hello/handler.ts -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-single/handlers/hello/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-single/handlers/hello/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-single/handlers/hello/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-single/handlers/hello/package.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-single/handlers/hello/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-single/handlers/world/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-single/handlers/world/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-single/handlers/world/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-single/handlers/world/package.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-single/handlers/world/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-single/out/index.ts: -------------------------------------------------------------------------------- 1 | export const statusCode = 200; 2 | -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-single/out/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-single/out/package.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-single/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-single/package.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-single/serverless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-single/serverless.js -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-single/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-single/tsconfig.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-nm-single/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-nm-single/yarn.lock -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-individually/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-individually/.gitignore -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-individually/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-individually/.prettierignore -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-individually/.yarn/releases/yarn-3.2.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-individually/.yarn/releases/yarn-3.2.1.cjs -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-individually/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-individually/.yarnrc.yml -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-individually/framework/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-individually/framework/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-individually/framework/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-individually/framework/package.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-individually/handlers/handler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-individually/handlers/handler/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-individually/handlers/hello/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-individually/handlers/hello/handler.ts -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-individually/handlers/hello/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-individually/handlers/hello/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-individually/handlers/hello/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-individually/handlers/hello/package.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-individually/handlers/hello/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-individually/handlers/world/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-individually/handlers/world/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-individually/handlers/world/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-individually/handlers/world/package.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-individually/handlers/world/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-individually/out/index.ts: -------------------------------------------------------------------------------- 1 | export const statusCode = 200; 2 | -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-individually/out/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-individually/out/package.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-individually/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-individually/package.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-individually/serverless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-individually/serverless.js -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-individually/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-individually/tsconfig.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-individually/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-individually/yarn.lock -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-single/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-single/.gitignore -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-single/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-single/.prettierignore -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-single/.yarn/releases/yarn-3.2.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-single/.yarn/releases/yarn-3.2.1.cjs -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-single/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-single/.yarnrc.yml -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-single/framework/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-single/framework/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-single/framework/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-single/framework/package.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-single/handlers/handler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-single/handlers/handler/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-single/handlers/hello/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-single/handlers/hello/handler.ts -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-single/handlers/hello/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-single/handlers/hello/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-single/handlers/hello/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-single/handlers/hello/package.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-single/handlers/hello/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-single/handlers/world/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-single/handlers/world/index.ts -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-single/handlers/world/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-single/handlers/world/package.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-single/handlers/world/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-single/out/index.ts: -------------------------------------------------------------------------------- 1 | export const statusCode = 200; 2 | -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-single/out/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-single/out/package.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-single/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-single/package.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-single/serverless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-single/serverless.js -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-single/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-single/tsconfig.json -------------------------------------------------------------------------------- /test/__fixtures__/ts-pnp-single/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/__fixtures__/ts-pnp-single/yarn.lock -------------------------------------------------------------------------------- /test/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/benchmark.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/index.js -------------------------------------------------------------------------------- /test/index.js.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/index.js.snapshot -------------------------------------------------------------------------------- /test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/test/setup.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergioramos/serverless-plugin-tree-shake/HEAD/yarn.lock --------------------------------------------------------------------------------