Skip to content

Commit

Permalink
Migrate to pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
super16 committed Mar 4, 2023
1 parent e1d9953 commit d43cac5
Show file tree
Hide file tree
Showing 7 changed files with 2,413 additions and 6,366 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/gh-pages-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,22 @@ jobs:
gh-pages-deploy:
name: Deploying to Github Pages
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: pnpm/action-setup@v2
with:
node-version: 16
version: 7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install packages
run: npm i
run: pnpm i
- name: Set Creds
run: git config user.name "Mark" && git config user.email "${{ secrets.EMAIL }}"
- name: Deploy
run: npm run deploy
run: pnpm run deploy
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ dist
dist-ssr
*.local
.vscode
package-lock.json
18 changes: 12 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,26 @@ Websockets chatbot made with [Vue3](https://vuejs.org/),

## Run

### Install dependencies

```shell
pnpm install
```

### Development

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

### Linting

```bash
npm run lint
```shell
pnpm run lint
```

### Production

```bash
npm run build
```shell
pnpm run build
```
Loading

0 comments on commit d43cac5

Please sign in to comment.