An open API service indexing awesome lists of open source software.

https://github.com/tsubasahiga/vnl

Vite製npmライブラリ開発ボイラープレート
https://github.com/tsubasahiga/vnl

Last synced: 2 months ago
JSON representation

Vite製npmライブラリ開発ボイラープレート

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)