Skip to content

Commit

Permalink
feat!: switch from yarn@3 to npm@10
Browse files Browse the repository at this point in the history
  • Loading branch information
styfle committed Nov 12, 2023
1 parent c0db861 commit c204067
Show file tree
Hide file tree
Showing 10 changed files with 4,229 additions and 1,490 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: yarn install
- run: yarn run lint
- run: yarn run test
- run: npm install
- run: npm run lint
- run: npm run test
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@ dist
.next
pages/*.js
src/*.js
public/yarn.js
test/hardlink/link
dev.sh
.now
.vercel
.yarn/cache
.yarn/install-state.gz
786 changes: 0 additions & 786 deletions .yarn/releases/yarn-3.2.1.cjs

This file was deleted.

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

This file was deleted.

6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Now the web app should be available at http://localhost:3000
Make sure the tests are passing.

```
yarn run test
npm run test
```

## Deploying the code
Expand All @@ -75,6 +75,6 @@ Then you can simply run `vercel` to deploy.
Wow you're doing great! Before you submit a Pull Request, please create an issue so that we can discuss the problem you are solving. When we're all on the same page, make sure you test the code and prettify the code. And please add additional tests if possible.

```sh
yarn run test
yarn run prettier
npm run test
npm run prettier
```
Loading

0 comments on commit c204067

Please sign in to comment.