Skip to content

Commit 1a782b0

Browse files
authored
feat: Node バージョンを 22 LTS へ移行 (#194)
* feat: Node バージョンを 22 LTS へ移行 * fix: CI を yarn から npm へ移行 * docs: yarn 前提の解説を npm へ移行 * chore: モノレポ運用していないので不要な設定ファイルを削除
1 parent a72dc8d commit 1a782b0

File tree

8 files changed

+12750
-6529
lines changed

8 files changed

+12750
-6529
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222

2323
# Runs a single command using the runners shell
2424
- name: Install
25-
run: yarn install
25+
run: npm install
2626

2727
# Runs a set of commands using the runners shell
2828
- name: Test
29-
run: yarn test
29+
run: npm test

.gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -110,5 +110,3 @@ dist/
110110
tmp/
111111
temp/
112112

113-
# End of https://www.gitignore.io/api/node
114-
package-lock.json

CONTRIBUTING.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44

55
```bash
66
git clone https://github.com/vivliostyle/vfm.git && cd vfm
7-
yarn install
8-
yarn build
9-
yarn link
7+
npm install
8+
npm run build
9+
npm link
1010
DEBUG=vfm vfm
1111
```
1212

13-
After setup, run `yarn dev` to watch files.
13+
After setup, run `npm run dev` to watch files.
1414

1515
## Commit Guide
1616

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

3131
```bash
32-
yarn release:pre
32+
npm run release:pre
3333
# or
3434
release-it --preRelease --npm.tag=next
3535
```
3636

3737
### Graduate
3838

3939
```bash
40-
yarn release
40+
npm run release
4141
# or
4242
release-it
4343
```

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@ vivliostyle build book.html -s A4
6666

6767
```bash
6868
npm install --save @vivliostyle/vfm
69-
# or
70-
yarn add @vivliostyle/vfm
7169
```
7270

7371
```js

lerna.json

-15
This file was deleted.

0 commit comments

Comments
 (0)