Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
177 changes: 97 additions & 80 deletions .circleci/config.yml

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ build/Release
# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules
.pnpm-store/
integration-tests/gatsby-cli/execution-folder/*
*.un~
dist
Expand Down
10 changes: 5 additions & 5 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,18 @@ image:
file: .gitpod.Dockerfile
tasks:
- init: >
yarn run bootstrap &&
pnpm run bootstrap &&
cd ./examples/using-typescript &&
yarn install &&
# Pin Yarn 1 explicitly so this nested example does not inherit the repo
# root pnpm packageManager metadata.
env COREPACK_ENABLE_STRICT=0 corepack yarn@1.22.22 install &&
gatsby-dev --set-path-to-repo ../.. &&
gatsby-dev --scan-once &&
npx gatsby build &&
cd ../.. &&
touch /tmp/done.txt
command: >
yarn run watch --scope={gatsby,gatsby-link}
pnpm run watch --scope={gatsby,gatsby-link}
- openMode: split-right
before: >
cd ./examples/using-typescript
Expand All @@ -31,5 +33,3 @@ tasks:
ports:
- port: 8000
onOpen: open-preview
- port: 31997 # yarn mutex
onOpen: ignore
4 changes: 4 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node-linker=isolated
shamefully-hoist=true
link-workspace-packages=true
prefer-workspace-packages=true
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
*.min.js
**/node_modules/**
pnpm-lock.yaml
flow-typed
deprecated-packages

Expand Down
Loading
Loading