forked from graphprotocol/docs
-
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.
- Loading branch information
Dimitri POSTOLOV
authored
Jun 14, 2023
1 parent
989664e
commit 160941e
Showing
9 changed files
with
177 additions
and
81 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
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM node:18-alpine as builder | |
ENV PNPM_HOME="/usr/bin" | ||
|
||
RUN apk add --no-cache git | ||
RUN npm install -g [email protected].0 | ||
RUN npm install -g [email protected].2 | ||
|
||
WORKDIR /app | ||
|
||
|
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,12 +1,12 @@ | ||
{ | ||
"name": "the-graph-docs-monorepo", | ||
"private": true, | ||
"packageManager": "[email protected].0", | ||
"packageManager": "[email protected].2", | ||
"scripts": { | ||
"build": "pnpm -r build", | ||
"build": "turbo run build", | ||
"check": "pnpm typecheck && pnpm lint && pnpm prettier:check", | ||
"check:fix": "pnpm typecheck; pnpm lint:fix; exit 0", | ||
"dev": "pnpm --filter @graphprotocol/docs dev", | ||
"check:fix": "pnpm typecheck && pnpm lint:fix", | ||
"dev": "turbo run dev --parallel", | ||
"docker:build": "DOCKER_BUILDKIT=1 docker build . -t docs --no-cache", | ||
"docker:clean": "docker builder prune", | ||
"docker:up": "docker run --rm -it -p 3000:80 -v \"$(pwd)/nginx.conf:/etc/nginx/nginx.conf\" docs", | ||
|
@@ -19,7 +19,7 @@ | |
"prettier": "prettier . --loglevel warn --write", | ||
"prettier:check": "prettier . --loglevel warn --check", | ||
"start": "pnpm --filter @graphprotocol/docs start", | ||
"typecheck": "pnpm --filter @graphprotocol/docs typecheck" | ||
"typecheck": "turbo run typecheck" | ||
}, | ||
"devDependencies": { | ||
"@edgeandnode/eslint-config": "^1.3.5", | ||
|
@@ -34,6 +34,7 @@ | |
"remark-lint-heading-increment": "^3.1.2", | ||
"remark-lint-no-heading-punctuation": "^3.1.2", | ||
"remark-lint-restrict-elements": "workspace:*", | ||
"turbo": "^1.10.3", | ||
"typescript": "~5.0.4" | ||
}, | ||
"lint-staged": { | ||
|
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
Oops, something went wrong.