Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devghost/svelte
Svelte & Parcel template
https://github.com/devghost/svelte
babel eslint jest parcel prettier svelte template wallaby
Last synced: 3 months ago
JSON representation
Svelte & Parcel template
- Host: GitHub
- URL: https://github.com/devghost/svelte
- Owner: devghost
- Created: 2019-09-25T13:54:06.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T22:02:39.000Z (almost 2 years ago)
- Last Synced: 2024-05-10T22:33:00.393Z (6 months ago)
- Topics: babel, eslint, jest, parcel, prettier, svelte, template, wallaby
- Language: JavaScript
- Homepage:
- Size: 1010 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A Svelte ❤️ Parcel template
This is a Svelte template using Parcel
## Included in template
- Bundling using [Parcel](https://parceljs.org/)
- Testing with [Jest](https://jestjs.io/) (with Snapshot support)
- Formatting with [ESLint](https://eslint.org/) and [Prettier](https://prettier.io/)
- Transpiling with [Babel](https://babeljs.io/)
- [Wallaby](https://wallabyjs.com/) enabled## Getting started
npx degit devghost/svelte svelte-app
cd svelte-app
npm install && npm startNow head over to your favourite browser and open up `localhost:1234` and you are ready to go.
## Build
To build the project run the following:
npm run build
## Tests
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
## Linting
You may just check for linting or auto fix using these two options
npm run lint
npm run lint:fix