Files
vue-cli/packages/@vue/cli-ui
Hugo Alliaume a115151027 docs(cli-ui): add more notes for local development (#2281)
* docs(cli-ui): add some more user-friendly notes

* docs(cli-ui): add notes about running E2E tests locally

* chore(docs:cli-ui): cr/wording

* chore(docs:cli-ui): revert some changes, remove additionnal command for tests

* chore(docs:cli-ui): commands for cli-ui-addon-wepack
2018-08-22 23:11:40 +02:00
..
2018-06-14 20:06:50 +02:00
2018-03-04 00:58:57 +01:00
2018-05-25 02:17:57 +02:00
2018-06-11 01:53:01 +02:00
2018-03-04 00:58:57 +01:00
2018-08-16 12:10:33 -04:00
2018-05-29 15:49:27 -04:00

@vue/cli-ui

Local development

Before starting a local cli-ui instance, consider following the contributing guide in order to download all required dependencies of vue-cli's packages.

Just after, you should build once then serve @vue/cli-ui-addon-webpack by running:

cd ../cli-ui-addon-webpack
yarn build # just do once
yarn serve

Then you start the ui server (based on Apollo):

cd ../cli-ui
yarn run apollo

And then in another terminal, you should serve the ui web app:

yarn run serve

Testing

For running E2E tests, you just need to run:

yarn run test:e2e

This will open a new Cypress window. You can now run all or specific integration tests.