You've already forked serverless-plugin-typescript
mirror of
https://github.com/encounter/serverless-plugin-typescript.git
synced 2026-03-30 11:37:55 -07:00
e37c45f6c9
Serverless 0.16.0 introduced a feature which excludes Node.js dev dependencies from .zip files. The feature uses package.json to find which dependencies can be excluded. https://github.com/serverless/serverless/pull/3737 This commit adds the package.json to the .build folder, so that Serverless can find the package.json file.
10 lines
158 B
JSON
10 lines
158 B
JSON
{
|
|
"dependencies": {
|
|
"lodash": "^4.17.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/lodash": "^4.14.63",
|
|
"serverless-plugin-typescript": "^0.1.2"
|
|
}
|
|
}
|