mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-12 02:00:06 -06:00
* refactor: use getPathToDesktopIndex for launchpad path * chore: add dependencies for graphql * Get GraphQL & Vue working together * update vue and remove need for patch-package * add apollo example * Update Wizard.vue * Add prebuild * update types * update tests * use debug instead of console.log * skip test * close gql server * fix server unit tests * try changing policies * try to install angular via package.json injection * update command * move graphql-codegen to dependencies * update package.json * bump deps * add gql * update build * add codegen.yml to build * add schema to build * include src for launchpad Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com>
10 lines
169 B
JavaScript
10 lines
169 B
JavaScript
require('@packages/server')
|
|
|
|
if (process.argv.includes('--devWatch')) {
|
|
process.on('message', (msg) => {
|
|
if (msg === 'close') {
|
|
process.exit(0)
|
|
}
|
|
})
|
|
}
|