We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1505122 commit dd86fe9Copy full SHA for dd86fe9
bin/index.ts
@@ -200,7 +200,7 @@ async function run(argv:AnyObject) {
200
201
}
202
203
-export let resource_type = ({} = res);
+//export let resource_type = ({} = res);
204
export let stackNames: any = stack_resource_Name;
205
let moreStack;
206
let customStacks:AnyObject;
cli-main/util.ts
@@ -561,5 +561,5 @@ export let samValidate=function(){
561
562
export let makeid =function (length) {
563
const crypto = require('crypto');
564
- return String.fromCharCode(...crypto.randomBytes(2))
+ return (crypto.randomBytes(1).toString("base64url").replace(/[0-9]/g, 'd')).toLowerCase();
565
0 commit comments