Skip to content

Commit 289d0be

Browse files
committed
chore: replace legacy Yarn with NPM
Signed-off-by: Jon Koops <[email protected]>
1 parent 92d2f2e commit 289d0be

File tree

6 files changed

+6867
-3268
lines changed

6 files changed

+6867
-3268
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
- uses: actions/setup-node@v1
1515
with:
1616
node-version: "20.x"
17-
- run: yarn install --pure-lockfile
18-
- run: yarn build
17+
- run: npm ci
18+
- run: npm run build
1919
- run: npx semantic-release
2020
env:
2121
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
with:
2222
node-version: ${{ matrix.node_version }}
2323
- name: Install
24-
run: yarn install --pure-lockfile --ignore-engines
24+
run: npm ci
2525
- name: Test
26-
run: yarn test:cov
26+
run: npm run test:cov
2727
- uses: coverallsapp/[email protected]
2828
with:
2929
github-token: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,6 @@ You can install this package from [NPM](https://www.npmjs.com):
2626
npm add file-selector
2727
```
2828

29-
Or with [Yarn](https://yarnpkg.com/en):
30-
```bash
31-
yarn add file-selector
32-
```
33-
3429
### CDN
3530
For CDN, you can use [unpkg](https://unpkg.com):
3631

0 commit comments

Comments
 (0)