├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── nodejs.yml ├── .gitignore ├── .prettierignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYRIGHT ├── LICENSE ├── README.md ├── assets └── deploy-demo.gif ├── jest.config.js ├── package.json ├── prettier.config.js ├── serverless.component.yml ├── src ├── serverless.js └── utils.js ├── templates └── aws-lambda-layer-starter │ ├── .gitignore │ ├── serverless.template.yml │ ├── serverless.yml │ └── src │ └── nodejs │ └── package.json └── tests ├── integration.test.js ├── src └── index.js └── utils.js /.eslintignore: -------------------------------------------------------------------------------- 1 | coverage 2 | dist 3 | node_modules -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda-layer/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda-layer/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda-layer/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | coverage 2 | dist 3 | node_modules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda-layer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda-layer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda-layer/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda-layer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda-layer/HEAD/README.md -------------------------------------------------------------------------------- /assets/deploy-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda-layer/HEAD/assets/deploy-demo.gif -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | clearMocks: true 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda-layer/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda-layer/HEAD/prettier.config.js -------------------------------------------------------------------------------- /serverless.component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda-layer/HEAD/serverless.component.yml -------------------------------------------------------------------------------- /src/serverless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda-layer/HEAD/src/serverless.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda-layer/HEAD/src/utils.js -------------------------------------------------------------------------------- /templates/aws-lambda-layer-starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda-layer/HEAD/templates/aws-lambda-layer-starter/.gitignore -------------------------------------------------------------------------------- /templates/aws-lambda-layer-starter/serverless.template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda-layer/HEAD/templates/aws-lambda-layer-starter/serverless.template.yml -------------------------------------------------------------------------------- /templates/aws-lambda-layer-starter/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda-layer/HEAD/templates/aws-lambda-layer-starter/serverless.yml -------------------------------------------------------------------------------- /templates/aws-lambda-layer-starter/src/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda-layer/HEAD/templates/aws-lambda-layer-starter/src/nodejs/package.json -------------------------------------------------------------------------------- /tests/integration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda-layer/HEAD/tests/integration.test.js -------------------------------------------------------------------------------- /tests/src/index.js: -------------------------------------------------------------------------------- 1 | module.exports.testFunction = () => 'Test Successful' 2 | -------------------------------------------------------------------------------- /tests/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverless-components/aws-lambda-layer/HEAD/tests/utils.js --------------------------------------------------------------------------------