Skip to content

Commit

Permalink
chore: fix dev commands in Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
niklaswolf committed Jun 7, 2024
1 parent ec4e1a1 commit 28b5044
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,26 +21,26 @@

```bash
# Install dependencies
npm install
pnpm install

# Generate type stubs
npm run dev:prepare
pnpm dev:prepare

# Develop with the playground
npm run dev
pnpm dev

# Build the playground
npm run dev:build
pnpm dev:build

# Run ESLint
npm run lint
pnpm lint

# Run Vitest
npm run test
npm run test:watch
pnpm test
pnpm test:watch

# Release new version
npm run release
pnpm release
```

## Integration in vue-demo-store checkout page
Expand Down

0 comments on commit 28b5044

Please sign in to comment.