@@ -33,7 +33,7 @@ Generate a TypeScript SDK by following the instructions on this page.
3333 groups :
3434 local :
3535 generators :
36- - name : fernapi/fern-typescript-node- sdk
36+ - name : fernapi/fern-typescript-sdk
3737 output :
3838 location : local-file-system
3939 path : ../sdks/typescript
@@ -43,7 +43,7 @@ Generate a TypeScript SDK by following the instructions on this page.
4343 ` ` `
4444
4545 <Note>` fern init` creates a default configuration that includes the
46- TypeScript Node SDK generator. The `local` group containing this
46+ TypeScript SDK generator. The `local` group containing this
4747 generator only generates if you run fern generate without specifying a
4848 group, or if you explicitly target it with `fern generate --group
4949 local`. In subsequent steps, you'll add an additional generator for your
@@ -59,15 +59,15 @@ Generate a TypeScript SDK by following the instructions on this page.
5959Add the TypeScript SDK generator :
6060
6161` ` ` bash
62- fern add fern-typescript-node- sdk --group sdk
62+ fern add fern-typescript-sdk --group sdk
6363` ` `
6464
6565This command adds the following to `generators.yml` :
6666
6767` ` ` yaml
6868 sdk:
6969 generators:
70- - name: fernapi/fern-typescript-node- sdk
70+ - name: fernapi/fern-typescript-sdk
7171 version: <Markdown src="/snippets/version-number.mdx"/>
7272 output:
7373 location: local-file-system
@@ -78,15 +78,12 @@ This command adds the following to `generators.yml`:
7878` ` ` bash
7979fern/ # created in step 1
8080sdks/ # created by fern generate --group sdk
81- ├─ typescript
82- ├─ cjs/
83- ├─ api/
84- ├─ core/
85- └─ errors/
86- └─ esm/
87- ├─ api/
88- ├─ core/
89- └─ errors/
81+ ├─ typescript
82+ ├─ Client.ts
83+ ├─ index.ts
84+ ├─ errors/
85+ ├─ core/
86+ └─ api/
9087` ` `
9188
9289</Steps>
0 commit comments