diff --git a/apps/typesync/package.json b/apps/typesync/package.json index b832429f..ea7d19e3 100644 --- a/apps/typesync/package.json +++ b/apps/typesync/package.json @@ -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.", diff --git a/apps/typesync/scripts/copy-package-json.ts b/apps/typesync/scripts/copy-package-json.ts index bc89f62e..c66997e5 100644 --- a/apps/typesync/scripts/copy-package-json.ts +++ b/apps/typesync/scripts/copy-package-json.ts @@ -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, diff --git a/docs/docs/quickstart.md b/docs/docs/quickstart.md index b1459494..f8024163 100644 --- a/docs/docs/quickstart.md +++ b/docs/docs/quickstart.md @@ -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.