Skip to content

Commit

Permalink
chore: check docs build on pr ci (#502)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonkuhrt authored Apr 5, 2023
1 parent 02a5522 commit 37c5cc2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@
},
"homepage": "https://github.com/jasonkuhrt/graphql-request",
"scripts": {
"build:docs": "doctoc README.md --notitle",
"dev": "rm -rf dist && tsc --watch",
"format": "prettier --write .",
"format": "pnpm build:docs && prettier --write .",
"lint": "eslint . --ext .ts,.tsx --fix",
"check": "pnpm check:types && pnpm check:format && pnpm check:lint",
"check:types": "pnpm tsc --noEmit",
"check:format": "prettier --check .",
"check:format": "prettier --check . && pnpm build:docs && git diff --exit-code README.md",
"check:lint": "eslint . --ext .ts,.tsx --max-warnings 0",
"prepublishOnly": "pnpm build",
"build:docs": "doctoc README.md --notitle && prettier --write README.md",
"build": "pnpm clean && pnpm build:cjs && pnpm build:esm",
"build:cjs": "pnpm tsc --project tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > build/cjs/package.json",
"build:esm": "pnpm tsc --project tsconfig.esm.json",
Expand Down

0 comments on commit 37c5cc2

Please sign in to comment.