Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Node バージョンを 22 LTS へ移行 #194

Merged
merged 4 commits into from
Mar 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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