Skip to content

Commit

Permalink
chore: switch from yarn to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
amtrack committed Dec 2, 2024
1 parent be70d1e commit bf3af4a
Show file tree
Hide file tree
Showing 5 changed files with 1,213 additions and 616 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
with:
node-version-file: .node-version
- name: Install dependencies
run: yarn install
run: npm ci
- name: Crawl data
run: yarn run crawl
run: npm run crawl
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Build
run: yarn run build
run: npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This website indexes sf plugins based on npmjs.com and GitHub.
## Development

```
yarn install
GITHUB_TOKEN="$(gh auth token)" yarn run crawl
yarn develop
npm ci
GITHUB_TOKEN="$(gh auth token)" npm run crawl
npm run develop
```
Loading

0 comments on commit bf3af4a

Please sign in to comment.