Skip to content

Commit 6507a35

Browse files
authored
ci: fix netlify master build, restore docs links (#1602)
1 parent adb998e commit 6507a35

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Whether you want a simple GraphiQL IDE instance for your server, or a more advan
2222

2323
The purpose of this monorepo is to give the GraphQL Community:
2424

25-
- a solid, to-specification official language service (see: [API Docs](https://graphiql-test.netlify.com/lsp))
25+
- a to-specification official language service (see: [API Docs](https://graphiql-test.netlify.com/typedoc))
2626
- a comprehensive LSP server and CLI service for use with IDEs
2727
- a codemirror mode
2828
- a monaco mode (in the works)

netlify.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
command = "yarn build && yarn build-bundles && yarn build-docs"
33
publish = "packages/graphiql"
44

5-
[context.production]
6-
command = "echo main"
7-
85
[context.deploy-preview]
96
# ignore changes on each push, but don't ignore above for the merge context
107
ignore = "ignore = git diff --quiet HEAD^ HEAD packages/graphql-language-service/ packages/graphql-language-service-server/ '**/*.md'"

packages/graphiql/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ test/pid
1616
renderGraphiql.js
1717
cypress/screenshots
1818
.awcache
19+
typedoc

packages/monaco-graphql/README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,7 @@ This will cover the basics, making an HTTP POST with the default `introspectionQ
5353

5454
## Advanced Usage
5555

56-
### `GraphQLAPI` ~([typedoc](http://graphiql-test.netlify/typedoc/classes/monaco_graphql.languageserviceapi.html))~
57-
58-
> Typedoc build is temporarily broken, see the ['last working typedoc build'](https://5ee2586531b6070008b2c313--graphiql-test.netlify.app/typedoc/classes/monaco_graphql.languageserviceapi.html), which is still accurate.
56+
### `GraphQLAPI` ([typedoc](http://graphiql-test.netlify/typedoc/classes/monaco_graphql.languageserviceapi.html))
5957

6058
If you call any of these API methods to modify the language service configuration at any point at runtime, the webworker will reload relevant language features.
6159

@@ -102,7 +100,7 @@ GraphQLAPI.setSchemaUri('https://localhost:1234/graphql');
102100

103101
#### `GraphQLAPI.setSchema()`
104102

105-
With either a [`RawSchema`](https://5ee2586531b6070008b2c313--graphiql-test.netlify.app/typedoc/modules/graphql_language_service.html#rawschema-2) - an SDL string or an `introspectionQuery` JSON, set the schema directly, bypassing the schema fetcher.
103+
With either a [`RawSchema`](https://graphiql-test.netlify.app/typedoc/modules/graphql_language_service.html#rawschema-2) - an SDL string or an `introspectionQuery` JSON, set the schema directly, bypassing the schema fetcher.
106104
We can't use a programattic `GraphQLSchema` instance, since this needs to be used by the webworker.
107105

108106
```ts

0 commit comments

Comments
 (0)