Skip to content

Commit 3fc7228

Browse files
authored
fix typesync publishing (#300)
1 parent 6471996 commit 3fc7228

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

apps/typesync/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphprotocol/hypergraph-cli",
3-
"version": "0.0.0-alpha.26",
3+
"version": "0.0.0-alpha.27",
44
"type": "module",
55
"license": "MIT",
66
"description": "CLI toolchain to view existing types, select, pick, extend to create schemas and generate a @graphprotocol/hypergraph schema.",

apps/typesync/scripts/copy-package-json.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ const program = Effect.gen(function* () {
1212
version: json.version,
1313
type: json.type,
1414
description: json.description,
15-
main: 'bin.cjs',
15+
main: 'bin.js',
1616
bin: {
17-
hypergraph: 'bin.cjs',
18-
hg: 'bin.cjs',
17+
hypergraph: 'bin.js',
18+
hg: 'bin.js',
1919
},
2020
engines: json.engines,
2121
dependencies: json.dependencies,

docs/docs/quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ This will start the TypeSync server. You can now access the **TypeSync** app in
6464
In the TypeSync Studio:
6565

6666
1. Give your new application a name and a short description.
67-
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.
68-
3. When you're ready, click "Generate App".
67+
2. Use the visual editor to define your data models (we call them "types"). Pick the type "Academic Field".
68+
3. Then click "Generate App".
6969

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

0 commit comments

Comments
 (0)