Official Website of expect(Exception).
This is a fork of the Sapper + TailwindCSS Rollup template.
- Make sure you're up and running node v8+ (but just use v12+)
- Run
npm install
oryarn install
- Run
npm run transform
to create the podcasts RSS feed which is the data source for the content of the routes/podcast
and/podcast/[slug]
.
Run the project and the tailwind watcher in development mode with:
npm run dev
and to rebuild the CSS in another window:
npm run dev:tailwindcss
Open up localhost:3000.
Run the project in production mode with:
npm run build && npm start
This application is deployed on Now. The project will automatically be redeployed by pushing on the master branch. If you need access to the Now Team, contact Vannsl.
To change settings, run:
npm install -g now
now
This project contains Cypress tests. To run the tests, execute
npm run cy
This project contains Jest tests. To run the tests, execute
npm run test
npm run test:watch # watch mode
npm run test:coverage # coverage mode
- HMR isn't working? There has been an [issue](https://github.com/sveltejs/sapper/issues/1151] which should be fixed by now. If not, try running
npm run build && npm start
to see changes. - Routes
/podcast
and/podcast/[slug]
are broken or don't show new episodes? (Re)runnpm run transform
. If that get's too complicated, we could add that command to thenpm run dev
command.