Skip to content

Commit

Permalink
chore: update package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
kagankan committed Aug 25, 2024
1 parent 2da2d3e commit 176e9be
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ yarn install
To start a development server:

```shell
yarn run pg:dev
yarn run dev
```

## Thanks
Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "@markuplint/playground",
"version": "4.0.0-alpha.6",
"name": "markuplint-playground",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"pg:dev": "vite",
"pg:build": "tsc && vite build",
"pg:lint": "run-s pg:lint:eslint pg:lint:markuplint pg:lint:prettier pg:lint:cspell",
"pg:lint:eslint": "eslint src --ext ts,tsx",
"pg:lint:markuplint": "markuplint src/**/*.tsx",
"pg:lint:prettier": "prettier --check 'src/**/*.{js,ts,tsx}'",
"pg:lint:cspell": "cspell src/**/* --no-progress",
"pg:test": "vitest run",
"pg:preview": "vite preview",
"pg:up": "yarn upgrade-interactive --latest"
"dev": "vite",
"build": "tsc && vite build",
"lint": "run-s lint:eslint lint:markuplint lint:prettier lint:cspell",
"lint:eslint": "eslint src --ext ts,tsx",
"lint:markuplint": "markuplint src/**/*.tsx",
"lint:prettier": "prettier --check 'src/**/*.{js,ts,tsx}'",
"lint:cspell": "cspell src/**/* --no-progress",
"test": "vitest run",
"preview": "vite preview",
"upgrade": "yarn upgrade-interactive --latest"
},
"dependencies": {
"@headlessui/react": "^2.1.2",
Expand Down
2 changes: 1 addition & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default defineConfig({

/* Run your local dev server before starting the tests */
webServer: {
command: 'yarn run pg:dev',
command: 'yarn run dev',
url: 'http://localhost:5173',
reuseExistingServer: !process.env.CI,
},
Expand Down

0 comments on commit 176e9be

Please sign in to comment.