Stylable-powered application. Generated using create-stylable-app
.
The following scripts are available:
npm run build
- Build the application in production mode into a folder named dist
. This folder can be served using any HTTP server. Uses webpack.
npm run serve
- Statically serve the dist
folder. Uses serve.
npm start
- Start the application in development mode (and open the web browser). Uses webpack-dev-server.
npm run clean
- Delete the dist
folder. Uses rimraf.
npm run typecheck
- Verify syntactic/semantic correctness. Uses typescript.
npm run lint
- Verify best practices and find common issues. Uses eslint.
npm test
- Execute typecheck
and lint
scripts.