Skip to content

Commit

Permalink
Adding undo, numeric and template inject features
Browse files Browse the repository at this point in the history
  • Loading branch information
ljacobsson committed Aug 22, 2020
1 parent 17e73d3 commit e2aa3d2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const AWS = require("aws-sdk");
const program = require("commander");
const templateParser = require("./src/template-parser");
require("@mhlabs/aws-sdk-sso");
program.version("1.0.18", "-v, --vers", "output the current version");
program.version("1.1.1", "-v, --vers", "output the current version");
program
.command("pattern")
.alias("p")
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": "@mhlabs/evb-cli",
"version": "1.1.0",
"version": "1.1.1",
"description": "A package for building EventBridge/CloudWatch Events patterns",
"main": "index.js",
"scripts": {
Expand Down
1 change: 0 additions & 1 deletion src/pattern-builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ async function buildPattern(format, schemas) {
outputPattern(pattern, format);
break;
}
console.log(chosenProp);
const path = chosenProp.$ref;
if (path) {
// If property points at reference, go to reference in schema and continue
Expand Down

0 comments on commit e2aa3d2

Please sign in to comment.