vaadin/base-starter-connect
`npm run start:webpack` does not work as described in README
Aperta
#106 aperta il 3 set 2019
buggood first issue
Metriche repository
- Star
- (9 stelle)
- Metriche merge PR
- (Metriche PR in attesa)
Descrizione
hey, I noticed that the Vaadin Connect starter app (https://github.com/vaadin/base-starter-connect) gives an
error npm ERR! missing script: start:webpackif you try to run the processes separately withnpm run start:webpack.
It looks like the README is out of date. You either have to run
npm start(which runs webpack, backend and apibrowser) or write your ownstart:webpackscript if you want to run only webpack
The way to do that manually would be
./node_modules/.bin/webpack --mode development --watch
DoD:
- README contains correct instructions on how to start only the front-end in the dev mode
- (it may require adding a new script into
@vaadin/connect-scripts)