Skip to content

Commit

Permalink
Merge pull request #12 from developmentseed/version.1.5
Browse files Browse the repository at this point in the history
Version.1.5
  • Loading branch information
Alireza authored Sep 11, 2017
2 parents daa036d + d9dbecd commit 2b13655
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kes",
"version": "0.1.4",
"version": "0.1.5",
"description": "Making deployment to AWS using CloudFormation easier and fun",
"scripts": {
"html-docs": "documentation build bin/cli.js -f html -o _docs --theme node_modules/documentation-devseed-theme",
Expand All @@ -14,7 +14,7 @@
"AWS"
],
"engines": {
"node": "6.10"
"node": ">=6.10"
},
"repository": "https://github.com/developmentseed/kes",
"author": "Alireza Jazayeri <[email protected]>",
Expand All @@ -37,6 +37,7 @@
"lodash.startswith": "^4.2.1",
"lodash.trim": "^4.5.1",
"lodash.upperfirst": "^4.3.1",
"lodash.values": "^4.3.0",
"mustache": "^2.3.0",
"node-forge": "^0.7.1",
"prompt": "^1.0.0",
Expand Down
5 changes: 3 additions & 2 deletions src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

const fs = require('fs');
const has = require('lodash.has');
const values = require('lodash.values');
const startsWith = require('lodash.startswith');
const trim = require('lodash.trim');
const replace = require('lodash.replace');
Expand Down Expand Up @@ -161,8 +162,8 @@ class Config {

return Object.assign(Config, {
apiMethods,
apiResources: Object.values(apiResources),
apiMethodsOptions: Object.values(apiMethodsOptions),
apiResources: values(apiResources),
apiMethodsOptions: values(apiMethodsOptions),
apiDependencies: Object.keys(apiDependencies).map(k => ({
name: k,
methods: apiDependencies[k]
Expand Down

0 comments on commit 2b13655

Please sign in to comment.