Skip to content

Commit

Permalink
Merge pull request #55 from SqueezerIO/nickfix
Browse files Browse the repository at this point in the history
fixed functions checksum file deps
  • Loading branch information
nickchisiu authored Nov 24, 2017
2 parents c373ab1 + 4dee1f2 commit 418d2c6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## v1.1.20 - 2017-11-24
- fixed functions checksum file deps

## v1.1.18 - 2017-11-16
- fixed packaging staff
- fixed packages on templates

## v1.1.18 - 2017-11-16
- major release
Expand Down
2 changes: 1 addition & 1 deletion lib/common/checksums/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class Checksums {
};
}

_.forEach(_.concat(paths, _.keys(this.tree.files)), (file) => {
_.forEach(_.concat(paths, this.tree.functions[functionName].deps), (file) => {
this.parseFile(file, functionName);
});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "squeezer-cli",
"version": "1.1.19",
"version": "1.1.20",
"preferGlobal": true,
"description": "Event-driven APIs & Web apps on functions, serverless ! Squeezer is a framework designed to help developers to get a better architecture on serverless zero-administration compute platforms with code that runs into cloud functions like [AWS Lambda](https://aws.amazon.com/documentation/lambda/) , [Azure Functions](https://azure.microsoft.com/en-us/services/functions/) , [Google Cloud Functions](https://cloud.google.com/functions/docs/) and [IBM OpenWhisk](https://developer.ibm.com/openwhisk/) .",
"homepage": "https://squeezer.io/",
Expand Down

0 comments on commit 418d2c6

Please sign in to comment.