Skip to content

Commit

Permalink
Merge pull request #6 from getlarge/feat-create-cli-apps
Browse files Browse the repository at this point in the history
feat: create Keto CLI app
  • Loading branch information
getlarge authored Apr 3, 2024
2 parents 99efe37 + 0a58aa8 commit 01437b1
Show file tree
Hide file tree
Showing 38 changed files with 3,382 additions and 1,540 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ This is a mono repository containing the following packages:
| [keto-client-wrapper](./packages/keto-client-wrapper/README.md) | A NestJS library to integrate [Ory Keto](https://www.ory.sh/keto/docs/) API | [![npm](https://img.shields.io/npm/v/@getlarge/keto-client-wrapper.svg?style=flat)](https://npmjs.org/package/@getlarge/keto-client-wrapper) |
| [keto-relations-parser](./packages/keto-relations-parser/README.md) | A TS library to parse a string representation of a Relation tuple using [Zanzibar](https://zanzibar.academy) notation. | [![npm](https://img.shields.io/npm/v/@getlarge/keto-relations-parser.svg?style=flat)](https://npmjs.org/package/@getlarge/keto-relations-parser) |
| [kratos-client-wrapper](./packages/kratos-client-wrapper/README.md) | A NestJS library to integrate [Ory Kratos](https://www.ory.sh/kratos/docs/) API | [![npm](https://img.shields.io/npm/v/@getlarge/kratos-client-wrapper.svg?style=flat)](https://npmjs.org/package/@getlarge/kratos-client-wrapper) |
| [keto-cli](./packages/keto-cli/README.md) | A CLI to interact with the [Ory Keto](https://www.ory.sh/keto/docs/) API | [![npm](https://img.shields.io/npm/v/@getlarge/keto-cli.svg?style=flat)](https://npmjs.org/package/@getlarge/keto-cli) |

## Installation and usage

Expand Down
13 changes: 11 additions & 2 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,16 @@
]
},
"release": {
"projects": ["*"],
"projects": ["packages/*"],
"projectsRelationship": "independent",
"changelog": {
"projectChangelogs": {
"createRelease": "github"
}
},
"version": {
"conventionalCommits": true
},
"git": {
"commit": true,
"tag": true
Expand All @@ -29,6 +32,7 @@
"targetDefaults": {
"build": {
"cache": true,
"inputs": ["production", "^production"],
"dependsOn": ["^build"]
},
"lint": {
Expand Down Expand Up @@ -58,7 +62,12 @@
"packageRoot": "dist/{projectRoot}",
"registry": "https://registry.npmjs.org/"
},
"dependsOn": ["build"]
"dependsOn": [
{
"target": "build",
"params": "forward"
}
]
}
},
"nxCloudAccessToken": "ZDU0ZWUwNDktM2YzZC00ODgzLWFiNTktYzQzNDVmOWZlNTE0fHJlYWQtd3JpdGU="
Expand Down
Loading

0 comments on commit 01437b1

Please sign in to comment.