https://github.com/oti/boilerplate_vue
https://github.com/oti/boilerplate_vue
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/oti/boilerplate_vue
- Owner: oti
- Created: 2019-11-08T10:48:53.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2023-07-19T07:20:01.000Z (almost 3 years ago)
- Last Synced: 2025-01-22T22:32:25.554Z (over 1 year ago)
- Language: TypeScript
- Size: 6.39 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Vue Web Dev Boilerplate
TypeScript Vue + Vuex を使ったウェブサイト開発環境のボイラープレートです。
## development
```bash
ndenv install 12.18.0
ndenv rehash
```
```bash
npm ci
npm run serve
```
## build
```bash
npm run build
```
## test
```bash
npm run test:unit
```
Jest でユニットテストを実行します。スナップショットを更新するには
```bash
npm run test:unit -- -u
```
を実行してください。
## lint
```bash
npm run lint
```
自動フォーマットするには
```bash
npm run lint -- --fix
```
を実行してください。