-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: lamda build and add license (#248)
- Loading branch information
Showing
6 changed files
with
32 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
We’ve made our Foundations’ roadmap public on GitHub to outline Reapit’s current product plans for its developer platform and marketplace. | ||
|
||
All information is provided for INFORMATIONAL PURPOSES ONLY, is general in nature, and should not be relied upon or construed as a binding commitment to deliver any material, code, or functionality. Reapit makes no guarantees of any kind regarding the information herein. | ||
|
||
Please do not rely on this information in making decisions, as the development, release and timing of any products, features or functionality shall be made in Reapit’s sole discretion, and is subject to change. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// https://stackoverflow.com/questions/48226686/serverless-yml-touppercase#48249468 | ||
module.exports.provider = serverless => { | ||
// The `serverless` argument containers all the information in the .yml file | ||
const provider = serverless.service.provider | ||
|
||
return Object.entries(provider).reduce( | ||
(accumulator, [key, value]) => ({ | ||
...accumulator, | ||
[key]: | ||
typeof value === 'string' | ||
? { | ||
lowercase: value.toLowerCase(), | ||
uppercase: value.toUpperCase(), | ||
} | ||
: value, | ||
}), | ||
{}, | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters