This is a Svelte template using Parcel
- Bundling using Parcel
- Testing with Jest (with Snapshot support)
- Formatting with ESLint and Prettier
- Transpiling with Babel
- Wallaby enabled
npx degit devghost/svelte svelte-app
cd svelte-app
npm install && npm start
Now head over to your favourite browser and open up localhost:1234
and you are ready to go.
To build the project run the following:
npm run build
I prefer running my tests using Wallaby, but if you prefer plain old command line, just type the following to run your tests:
npm t
You may just check for linting or auto fix using these two options
npm run lint
npm run lint:fix