https://github.com/tsubasahiga/vnl
Vite製npmライブラリ開発ボイラープレート
https://github.com/tsubasahiga/vnl
Last synced: 2 months ago
JSON representation
Vite製npmライブラリ開発ボイラープレート
- Host: GitHub
- URL: https://github.com/tsubasahiga/vnl
- Owner: TsubasaHiga
- Created: 2025-01-30T12:30:53.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-01-30T15:19:31.000Z (4 months ago)
- Last Synced: 2025-03-26T20:07:18.143Z (2 months ago)
- Language: TypeScript
- Size: 70.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vnl
Vite製npmライブラリ開発ボイラープレート
## Required Environment
- [Node.js](https://nodejs.org/ja) `v23.4.0`
- [Lefthook](https://github.com/evilmartians/lefthook) `v1.8.2````bash
# macOS
$ sw_vers
ProductName: macOS
ProductVersion: 14.4.1
BuildVersion: 23E224$ node -v
23.4.0# Windows OS
$ ver
Microsoft Windows [Version 10.0.22631.4602]$ node -v
23.4.0
```## Install
```bash
npm i
```## Dev
```bash
npm run dev
```## Build
```bash
npm run build
```## Test
```bash
# analyze
npm run analyze# test
npm run test# coverage
npm run coverage
```## Lint & Format
```bash
# lint
npm run lint# format
npm run format
```## Docs
- [バージョニングについて](./docs/semver.md)
- [コミットメッセージについて](./docs/commit-message.md)