Skip to content

Commit

Permalink
docs: updated docs to use npm as development guid
Browse files Browse the repository at this point in the history
  • Loading branch information
samk-dev committed Jun 19, 2023
1 parent 21f03ee commit da02e85
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,26 +80,26 @@ export interface ModuleOptions {

```bash
# Install dependencies
pnpm install
npm install

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

# Develop with the playground
pnpm run dev
npm run dev

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

# Run ESLint
pnpm run lint
npm run lint

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

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

<!-- Badges -->
Expand Down
4 changes: 2 additions & 2 deletions playground/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ const attrs = ref([
<div>
<client-only>
<h2>Calendar</h2>
<GCalendar v-model="date" :attributes="attrs" />
<VCalendar v-model="date" />
<h2>Date Picker</h2>
<GDatePicker v-model="date" :attributes="attrs" />
<VDatePicker v-model="date" :attributes="attrs" />
</client-only>
</div>
</template>

0 comments on commit da02e85

Please sign in to comment.