Skip to content

Commit

Permalink
feat: Node バージョンを 22 LTS へ移行 (#194)
Browse files Browse the repository at this point in the history
* feat: Node バージョンを 22 LTS へ移行

* fix: CI を yarn から npm へ移行

* docs: yarn 前提の解説を npm へ移行

* chore: モノレポ運用していないので不要な設定ファイルを削除
  • Loading branch information
akabekobeko authored Mar 3, 2025
1 parent a72dc8d commit 1a782b0
Show file tree
Hide file tree
Showing 8 changed files with 12,750 additions and 6,529 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:

# Runs a single command using the runners shell
- name: Install
run: yarn install
run: npm install

# Runs a set of commands using the runners shell
- name: Test
run: yarn test
run: npm test
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -110,5 +110,3 @@ dist/
tmp/
temp/

# End of https://www.gitignore.io/api/node
package-lock.json
12 changes: 6 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@

```bash
git clone https://github.com/vivliostyle/vfm.git && cd vfm
yarn install
yarn build
yarn link
npm install
npm run build
npm link
DEBUG=vfm vfm
```

After setup, run `yarn dev` to watch files.
After setup, run `npm run dev` to watch files.

## Commit Guide

Expand All @@ -29,15 +29,15 @@ release-it --preRelease=beta --npm.tag=next
### Bump pre-release version

```bash
yarn release:pre
npm run release:pre
# or
release-it --preRelease --npm.tag=next
```

### Graduate

```bash
yarn release
npm run release
# or
release-it
```
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,6 @@ vivliostyle build book.html -s A4

```bash
npm install --save @vivliostyle/vfm
# or
yarn add @vivliostyle/vfm
```

```js
Expand Down
15 changes: 0 additions & 15 deletions lerna.json

This file was deleted.

Loading

0 comments on commit 1a782b0

Please sign in to comment.