Skip to content

Commit fa24e23

Browse files
committed
Migrate from yarn to pnpm
1 parent d1ea9b5 commit fa24e23

File tree

9 files changed

+5035
-7462
lines changed

9 files changed

+5035
-7462
lines changed

.github/workflows/test.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ jobs:
88
node: ['latest', 'lts/*', 'lts/-1']
99
steps:
1010
- uses: actions/checkout@v4
11-
- uses: actions/setup-node@v3
11+
- uses: actions/setup-node@v4
1212
with:
1313
node-version: ${{ matrix.node }}
14-
- run: yarn
15-
- run: yarn build
16-
- run: yarn test
14+
- uses: pnpm/action-setup@v4
15+
- run: pnpm install
16+
- run: pnpm build
17+
- run: pnpm test

.gitignore

-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,4 @@
11
/node_modules/
22

3-
# Yarn 2
4-
.yarn/*
5-
!.yarn/releases
6-
!.yarn/plugins
7-
!.yarn/sdks
8-
!.yarn/versions
9-
.pnp.*
10-
113
# microbundle
124
/dist/

.prettierignore

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
# Yarn 2
2-
.yarnrc.yml
3-
.yarn/
4-
.pnp.*
1+
# pnpm
2+
pnpm-lock.yaml
53

64
# Markdowns
75
*.md

.yarn/releases/yarn-4.5.0.cjs

-925
This file was deleted.

.yarnrc.yml

-5
This file was deleted.

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ General purpose IRC client for nodejs. See **[documentation]** for the details.
88
- **[DEBUG]** support for easy debugging
99

1010
```bash
11-
npm install --save slate-irc-parser
12-
yarn add -D slate-irc-parser
11+
pnpm add -D slate-irc-parser
1312
```
1413
```js
1514
import irc from 'slate-irc'

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,5 @@
4040
"prettier": {
4141
"semi": false,
4242
"singleQuote": true
43-
},
44-
"packageManager": "yarn@4.5.0"
43+
}
4544
}

0 commit comments

Comments
 (0)