Skip to content

Commit

Permalink
Migrate from yarn to pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
simnalamburt committed Oct 8, 2024
1 parent d1ea9b5 commit 9166e64
Show file tree
Hide file tree
Showing 9 changed files with 5,035 additions and 7,461 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ jobs:
node: ['latest', 'lts/*', 'lts/-1']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: yarn
- run: yarn build
- run: yarn test
- uses: pnpm/action-setup@v4
- run: pnpm install
- run: pnpm build
- run: pnpm test
8 changes: 0 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,4 @@
/node_modules/

# Yarn 2
.yarn/*
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
.pnp.*

# microbundle
/dist/
6 changes: 2 additions & 4 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Yarn 2
.yarnrc.yml
.yarn/
.pnp.*
# pnpm
pnpm-lock.yaml

# Markdowns
*.md
Expand Down
925 changes: 0 additions & 925 deletions .yarn/releases/yarn-4.5.0.cjs

This file was deleted.

5 changes: 0 additions & 5 deletions .yarnrc.yml

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ General purpose IRC client for nodejs. See **[documentation]** for the details.
- **[DEBUG]** support for easy debugging

```bash
npm install --save slate-irc-parser
yarn add -D slate-irc-parser
pnpm add -D slate-irc-parser
```
```js
import irc from 'slate-irc'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@
"semi": false,
"singleQuote": true
},
"packageManager": "[email protected].0"
"packageManager": "[email protected].0"
}
Loading

0 comments on commit 9166e64

Please sign in to comment.