forked from graphql-nexus/nexus-prisma
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: remove lingering console.log chore(docs): syntax of example in readme (graphql-nexus#89) chore(docs): mention more about updating snapshots chore(docs): syntax of example in readme (graphql-nexus#91) docs: add jsdoc for $settings (graphql-nexus#90) Co-authored-by: Jason Kuhrt <jasonkuhrt@me.com> docs: list enum members in jsdoc (graphql-nexus#92) chore: update roadmap docs: update to nexus@^1.1 api (graphql-nexus#95) chore(docs): tweak scalar writing feat: add support for BigInt scalar (graphql-nexus#56) Co-authored-by: Jason Kuhrt <jasonkuhrt@me.com> Add docs webite Update theme.config.js Fix theme.config eslint Add missing typescript dep Limit docs workflow to run only when changing docs directory Fix formatting
- Loading branch information
Showing
39 changed files
with
7,437 additions
and
446 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: docs | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- docs/** | ||
|
||
defaults: | ||
run: | ||
working-directory: docs | ||
|
||
jobs: | ||
prettier: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 14.x | ||
- name: Install Dependencies | ||
run: yarn --frozen-lockfile | ||
- run: yarn -s format:check | ||
|
||
eslint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 14.x | ||
- name: Install Dependencies | ||
run: yarn --frozen-lockfile | ||
- run: yarn -s lint:check | ||
|
||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 16.x | ||
- run: yarn --frozen-lockfile | ||
- run: yarn -s build | ||
- run: yarn -s export | ||
- run: gh-pages --dist=out |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
{ | ||
"gitdoc.enabled": false | ||
"search.exclude": { | ||
"**/dist-cjs": true, | ||
"**/dist-esm": true, | ||
"**/__snapshots__": true, | ||
"yarn.lock": true | ||
}, | ||
"gitdoc.enabled": false, | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"typescript.enablePromptUseWorkspaceTsdk": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
out/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.next/ | ||
out/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/// <reference types="next" /> | ||
/// <reference types="next/types/global" /> | ||
/// <reference types="next/image-types/global" /> |
Oops, something went wrong.