2019-03-08 22:17:59 +00:00
|
|
|
# Souvenir
|
|
|
|
|
|
|
|
Capture few seconds as a gif for souvenir
|
|
|
|
|
|
|
|
## Project setup
|
|
|
|
```
|
2019-03-11 21:10:12 +00:00
|
|
|
npm i
|
|
|
|
```
|
|
|
|
of if you don't want to impact the package-lock
|
|
|
|
```
|
|
|
|
npm ci
|
2019-03-08 22:17:59 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### Compiles and hot-reloads for development
|
|
|
|
```
|
|
|
|
npm run serve
|
|
|
|
```
|
|
|
|
|
|
|
|
### Compiles and minifies for production
|
|
|
|
```
|
|
|
|
npm run build
|
|
|
|
```
|
2019-03-15 18:10:41 +00:00
|
|
|
If you want absolute public urls
|
|
|
|
```
|
|
|
|
npm run build -- --public-url https://my.super.kawaii.website/
|
|
|
|
```
|
2019-03-08 22:17:59 +00:00
|
|
|
|
|
|
|
### Lints and fixes files
|
|
|
|
```
|
|
|
|
npm run lint
|
|
|
|
```
|
2019-03-11 21:10:12 +00:00
|
|
|
```
|
|
|
|
npm run lint-fix
|
|
|
|
```
|