Skip to content

Commit

Permalink
refactor(lambda): adapt globby options to fast-glob v3 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ZauberNerd committed Jul 2, 2019
1 parent ec83ea6 commit ea7a9c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/lambda/lib/create-lambda-bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ module.exports = function createLambdaBundle(
globby(['**', '!node_modules/**'].concat(include).concat(patterns), {
cwd: rootDir,
dot: true,
followSymlinkedDirectories: true,
followSymbolicLinks: true,
onlyFiles: true,
ignore: ['.git/**'].concat(exclude),
}).then(function(paths) {
Expand Down

0 comments on commit ea7a9c5

Please sign in to comment.