Skip to content

Better mixed runtime & function deploy handling #180

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Apr 26, 2018
2 changes: 1 addition & 1 deletion lib/inject.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ function injectAllRequirements(funcArtifact) {
} else {
return injectRequirements(
path.join('.serverless', 'requirements'),
this.serverless.service.package.artifact,
this.serverless.service.package.artifact || funcArtifact
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Getting a syntax error. I think you're missing the , at end of line.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah. yes! (and that's probably why depcheck didn't think we use glob-all too)

this.options
);
}
Expand Down