Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: migrate to pnpm #115

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4

- run: npm ci
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: latest

- run: pnpm install

- name: Build project
run: npm run build
run: pnpm build
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,23 +74,30 @@ CHRONOS_COLLECTION_2='[{"shortName": "handbook", "title": "Handbook", "url": "ht
# add more collections here
CHRONOS_EXTRA_LINK_1='[{"url": "https://github.com/vanilla-os/Chronos", "name": "Source Code"}]' \
# add more extra links here
npm run generate-config
```

## Development

To start the development server, run the following command:

```bash
npm run dev
pnpm dev
```

## Generate Configuration

To generate the configuration file, run the following command:

```bash
pnpm generate-config
```

## Production

To build the production version, run the following command:

```bash
npm run build
pnpm build
```

### Docker
Expand Down
Loading