@drumee/setup-infra 1.0.9 → 1.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +3 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -227,7 +227,9 @@ function makeData(opt) {
227
227
  if (/.+\+$/.test(value)) {
228
228
  value = value.replace(/\+$/, data[key]);
229
229
  }
230
- data[key] = value.trim() || fallback;
230
+ if(value){
231
+ data[key] = value.trim() || fallback;
232
+ }
231
233
  }
232
234
  }
233
235
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drumee/setup-infra",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Drumee Infrastructure Setup Utilities",
5
5
  "main": "index.js",
6
6
  "scripts": {