-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: replace package manager from yarn to pnpm
- Loading branch information
Showing
14 changed files
with
5,573 additions
and
4,373 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
yarn lint-staged | ||
pnpm lint-staged |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
//registry.npmjs.org/:_authToken=${NPM_TOKEN} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,11 +6,11 @@ | |
"scripts": { | ||
"serve": "vite", | ||
"build": "vite build", | ||
"install:e2e": "yarn --cwd tests/playwright install", | ||
"test:e2e": "yarn --cwd tests/playwright run test", | ||
"playwright": "yarn --cwd tests/playwright run playwright", | ||
"install:e2e": "pnpm --dir tests/playwright install", | ||
"test:e2e": "pnpm --dir tests/playwright run test", | ||
"playwright": "pnpm --dir tests/playwright exec playwright", | ||
"preview": "vite build && vite preview", | ||
"lint": "yarn lint:eslint && yarn lint:vue && yarn lint:playwright && yarn lint:style", | ||
"lint": "pnpm lint:eslint && pnpm lint:vue && pnpm lint:playwright && pnpm lint:style", | ||
"lint:eslint": "eslint src tests/playwright", | ||
"lint:eslint:fix": "eslint --fix src tests/playwright", | ||
"lint:playwright": "tsc --noEmit --project tests/playwright/tsconfig.json --baseUrl tests/playwright", | ||
|
@@ -86,5 +86,6 @@ | |
"> 1%", | ||
"last 2 versions", | ||
"not IE <= 11" | ||
] | ||
], | ||
"packageManager": "[email protected]" | ||
} |
Oops, something went wrong.