Fix md-warnings

This commit is contained in:
Aarni Halinen
2019-06-03 18:24:07 +03:00
parent 754ae63b9f
commit f039169b1d
+10 -6
View File
@@ -1,4 +1,5 @@
# Web 2.0 Frontend
Minimal starter kit with hot module replacement (HMR) for rapid development.
* **[React](https://facebook.github.io/react/)** (16.x)
@@ -12,13 +13,15 @@ Minimal starter kit with hot module replacement (HMR) for rapid development.
* Image loading/minification using [Image Webpack Loader](https://github.com/tcoopman/image-webpack-loader)
* Typescript compiling using [Awesome Typescript Loader](https://github.com/s-panferov/awesome-typescript-loader) (5.x)
* Code quality (linting) for Typescript and SASS/CSS.
## Installation
1. Clone/download repo
2. `npm install`
## Usage
**Development**
### Development
`npm start`
@@ -29,9 +32,9 @@ Minimal starter kit with hot module replacement (HMR) for rapid development.
`npm run plop`
* Create a new component interactively using plop templates
* Create a new component interactively using plop templates
**Production**
### Production
`npm run start-prod`
@@ -40,13 +43,13 @@ Minimal starter kit with hot module replacement (HMR) for rapid development.
---
**All commands**
### All commands
Command | Description
--- | ---
`npm run start-dev` | Build app continously (HMR enabled) and serve @ `http://localhost:3000`
`npm run start-prod` | Build app once (HMR disabled) and serve @ `http://localhost:3000`
`npm run build` | Build app to `/dist/`
`npm run build` | Build app to `/dist/`
`npm run test` | Run e2e and unit tests
`npm run test:unit` | Run unit tests with Jest
`npm run test:e2e` | Run end-to-end tests with TestCafé
@@ -56,6 +59,7 @@ Command | Description
`npm run start` | (alias of `npm run start-dev`)
## See also
* [React Webpack Babel Starter](https://github.com/vikpe/react-webpack-babel-starter)
* [Isomorphic Webapp Starter](https://github.com/vikpe/isomorphic-webapp-starter)