Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CLI to work with new feature model #426

Merged
merged 12 commits into from
Aug 27, 2024
30 changes: 30 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,35 @@
"dependsOn": ["start shared", "start server", "start plugin"],
"problemMatcher": [],
},
{
"label": "start server cypress",
"type": "npm",
"script": "cypress:start",
"path": "packages/apollo-collaboration-server",
"problemMatcher": [],
"detail": "yarn build:shared && yarn start:nest --watch",
"dependsOn": ["yarn"],
"isBackground": true,
},
{
"label": "start server cli test",
"type": "npm",
"script": "test:cli:start",
"path": "packages/apollo-collaboration-server",
"problemMatcher": [],
"detail": "yarn build:shared && yarn start:nest --watch",
"dependsOn": ["yarn"],
"isBackground": true,
},
{
"label": "Start-cypress",
"dependsOn": ["start shared", "start server cypress", "start plugin"],
"problemMatcher": [],
},
{
"label": "Start-cli-test",
"dependsOn": ["start shared", "start server cli test", "start plugin"],
"problemMatcher": [],
},
],
}
Loading
Loading