Skip to content

Commit

Permalink
Updated apollo client start script to default to not starting custom …
Browse files Browse the repository at this point in the history
…viewer
  • Loading branch information
kgpax committed Sep 25, 2023
1 parent ed31a72 commit 8ba6e1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion examples/apollo-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"license": "MIT",
"private": true,
"scripts": {
"start": "concurrently \"yarn start:envy\" \"yarn start:web\" \"yarn start:viewer\"",
"start": "yarn start:web",
"start:custom-viewer": "concurrently \"yarn start:envy\" \"yarn start:web\" \"yarn start:viewer\"",
"start:web": "parcel ./src/index.html --port 4001 --no-cache",
"start:envy": "npx @envyjs/webui --noUi",
"start:viewer": "parcel ./src/viewer/viewer.html --port 4002 --no-cache"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"example:apollo": "concurrently \"cd examples/apollo && yarn start\" \"cd examples/apollo-client && yarn start\"",
"example:apollo": "concurrently \"cd examples/apollo && yarn start\" \"cd examples/apollo-client && yarn start:custom-viewer\"",
"example:express": "concurrently \"cd examples/express && yarn start\" \"cd examples/express-client && yarn dev\"",
"example:next": "cd examples/next && yarn && yarn dev",
"changeset": "changeset"
Expand Down

0 comments on commit 8ba6e1d

Please sign in to comment.