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
2 changes: 1 addition & 1 deletion apps/typesync/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphprotocol/hypergraph-cli",
"version": "0.0.0-alpha.26",
"version": "0.0.0-alpha.27",
"type": "module",
"license": "MIT",
"description": "CLI toolchain to view existing types, select, pick, extend to create schemas and generate a @graphprotocol/hypergraph schema.",
Expand Down
6 changes: 3 additions & 3 deletions apps/typesync/scripts/copy-package-json.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ const program = Effect.gen(function* () {
version: json.version,
type: json.type,
description: json.description,
main: 'bin.cjs',
main: 'bin.js',
bin: {
hypergraph: 'bin.cjs',
hg: 'bin.cjs',
hypergraph: 'bin.js',
hg: 'bin.js',
},
engines: json.engines,
dependencies: json.dependencies,
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ This will start the TypeSync server. You can now access the **TypeSync** app in
In the TypeSync Studio:

1. Give your new application a name and a short description.
2. Use the visual editor to define your data models (we call them "types"). For example, you could create a `Post` type with a `name` (Text) and `content` (Text) properties.
3. When you're ready, click "Generate App".
2. Use the visual editor to define your data models (we call them "types"). Pick the type "Academic Field".
3. Then click "Generate App".

TypeSync will create a new directory for your application (e.g., `./my-awesome-app`) containing all the files and dependencies you need.

Expand Down
Loading