Skip to content

Instantly share code, notes, and snippets.

@wataruoguchi
Last active May 23, 2019 04:35
Show Gist options
  • Save wataruoguchi/6ffefefdeb0c1b186c2e4adb027deab4 to your computer and use it in GitHub Desktop.
Save wataruoguchi/6ffefefdeb0c1b186c2e4adb027deab4 to your computer and use it in GitHub Desktop.
// package.json
{
...
"scripts": {
...
"deploy": "aws lambda update-function-code --function-name arn:aws:lambda:us-east-1:000000000000:function:transcode-video --zip-file fileb://Lambda-Deployment.zip",
"predeploy": "rm Lambda-Deployment.zip > /dev/null && npm prune --production && zip -r Lambda-Deployment.zip * -x *.zip *.log",
"postdeploy": "npm i --offline"
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment