Skip to content

Commit

Permalink
break: switch to pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
Teages committed Nov 27, 2023
1 parent 20520b1 commit caa5862
Show file tree
Hide file tree
Showing 4 changed files with 12,875 additions and 11,264 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ jobs:
with:
path: |
node_modules
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}
key: ${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}

- name: Install Dependencies
if: steps.cached-node_modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
run: pnpm install --frozen-lockfile

- name: Build Nuxt App
run: yarn build
run: pnpm build

- name: Build Docker Image
run: |
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,33 @@ Cytoid is a music game where you can create, share and play your own levels!
Powered by community, with many dedicated creators, Cytoid provides a huge
variety of musical genres to enjoy and a diverse range of gameplay design.

This is the repository for the **next version** of Cytoid.io Website.
This is the repository for the Cytoid.io Website.
The website was constructed using Vue.js, Nuxt.js.

## Setup

Make sure you have yarn globally, then:
Make sure you have pnpm globally, then:

```bash
# yarn
yarn install
# pnpm
pnpm i
```

## Development Server

Start the development server on `http://localhost:3000`:

```bash
# yarn
yarn dev
# pnpm
pnpm run dev
```

## Production

Build the application for production:

```bash
# yarn
yarn build
# pnpm
pnpm build
```

Loading

0 comments on commit caa5862

Please sign in to comment.