This is an npm initializer to do the repetitive setup I do when setting up a vue.js + parcel application. This follows the create-deck
package quite heavily.
npm init vue-parcel my-app-name
or
npx create-vue-parcel my-app-name
This generates a copy of edm00se/vue-parcel-starter. The application includes, out of the box:
- vue.js with SFCs (single file components)
- parcel for bundling and dev server
- jest for unit tests
- vs code jest config for debugging with tests
- prettier for formatting
- travis ci config for deploy via GitHub Pages
Inspired by:
MIT