Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 2 additions & 16 deletions apps/create-hypergraph/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,6 @@
# create-hypergraph

## 0.0.2
## 0.1.0
### Patch Changes

- 2d3814e: better check for access to template directory
- 97894a1: test suite for Cli tool
- f54e72a: create llms.txt for create-hypergraph usage
- 4446ffe: resolve inputs from passed in options or prompts
- f40426b: fix typo
- ba47d53: rename package.json bin to create-hypergraph
- 447cdb4: rename to create-hypergraph (drop app)
- bd88912: handle sigint of user killing cli with a log line instead of error message
- deee18d: add create-hypergraph-app tests to root workspace
- 39beee4: fixes. updates from testing
- 68a79db: rebase main. sort order import
- 64d196d: buildout ability scaffold app, install deps, initialize git
- 8ea798f: bump @types/node to latest
- a004e4f: use prompts instead of options
- 5a4c193: working on building create-hypergraph-app cli tool
- Initial release
2 changes: 1 addition & 1 deletion apps/create-hypergraph/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-hypergraph",
"version": "0.0.3",
"version": "0.1.0",
"description": "CLI toolchain to scaffold a Hypergraph-enabled application with a given template.",
"type": "module",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion apps/create-hypergraph/src/Cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const createHypergraphApp = Command.make('create-hypergraph-app', {

export const run = Command.run(createHypergraphApp, {
name: 'create-hypergraph-app',
version: '0.0.3',
version: '0.1.0',
});

// ========================
Expand Down
Loading