Files
cypress/dev/run.js
Chris Breidng da2e04fc94 Merge branch 'master' into CYP-94-cli-rewrite
# Conflicts:
#	dev/run.js
2017-04-21 10:58:19 -04:00

43 lines
821 B
JavaScript

module.exports = (args) => {
const cmd = args._[0]
if (cmd) {
require('./run-all')(cmd, args)
} else {
require('packages/core-app').start()
}
}
/**
TODO
starting app
deployment
break up core-app
- root of monorepo
- core-server
- core-driver
tests
- unit/integration in each package
- e2e should be in root
work out script running UX
- preserve coloring of individual output
* nodemon's colors are coming through, so see what it does
- bring back panes
* need to be able to scroll
requirements
---
developers will generally work in one repo at a time
- in terminal, pwd is that repo (packages/core-app)
- run tests individually per package
from root:
- npm install (or run one command to npm install) for all packages
- start app and run it
- run watch-dev for all packages
- run e2e tests
**/