Skip to content

Commit

Permalink
publish version 1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
BenoitRanque committed Oct 25, 2021
1 parent 3b64694 commit a9619d4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ npm install git+https://github.com/BenoitRanque/hasura-metadata-merge.git
To install a specific version, append the tag to the uri like so:

```bash
npm install git+https://github.com/BenoitRanque/hasura-metadata-merge.git#1.1.1
npm install git+https://github.com/BenoitRanque/hasura-metadata-merge.git#1.1.4
```

#### Usage
Expand Down
5 changes: 3 additions & 2 deletions dist/writeMetadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,10 @@ function writeMetadata(outputDir, metadata) {
outputDir,
'databases',
source.name,
'functions',
typeof fn.function === 'string'
? "!include " + fn.function + ".yaml"
: "!include " + fn.function.schema + "_" + fn.function.name + ".yaml",
? fn.function + ".yaml"
: fn.function.schema + "_" + fn.function.name + ".yaml",
], fn);
});
}
Expand Down

0 comments on commit a9619d4

Please sign in to comment.