-
Notifications
You must be signed in to change notification settings - Fork 258
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
3,607 additions
and
3,302 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,16 +20,21 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install pnpm | ||
uses: pnpm/[email protected] | ||
with: | ||
version: 7.5.0 | ||
- name: Use Node.js ${{ matrix.node }} | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- run: yarn install | ||
- run: yarn lint | ||
- run: yarn test | ||
- run: yarn build | ||
cache: 'pnpm' | ||
- run: pnpm install | ||
- run: pnpm run lint | ||
- run: pnpm run test | ||
- run: pnpm run build | ||
env: | ||
CI: true | ||
- run: yarn test:build | ||
- run: yarn tsd | ||
- run: yarn vue-tsc | ||
- run: pnpm run test:build | ||
- run: pnpm run tsd | ||
- run: pnpm run vue-tsc |
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,5 +1,4 @@ | ||
.idea | ||
node_modules | ||
yarn-error.log | ||
dist | ||
coverage |
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 |
---|---|---|
|
@@ -33,6 +33,7 @@ | |
"@vitejs/plugin-vue": "2.3.3", | ||
"@vitejs/plugin-vue-jsx": "1.3.10", | ||
"@vue/compat": "3.2.37", | ||
"@vue/runtime-core": "3.2.37", | ||
"@vue/compiler-dom": "3.2.37", | ||
"@vue/compiler-sfc": "3.2.37", | ||
"c8": "7.11.3", | ||
|
@@ -51,6 +52,7 @@ | |
"tslib": "2.4.0", | ||
"typescript": "4.7.4", | ||
"vitepress": "0.22.4", | ||
"vite": "2.9.13", | ||
"vitest": "0.17.0", | ||
"vue": "3.2.37", | ||
"vue-class-component": "8.0.0-rc.1", | ||
|
@@ -66,18 +68,18 @@ | |
"email": "[email protected]" | ||
}, | ||
"scripts": { | ||
"test": "yarn vitest", | ||
"test:coverage": "yarn vitest --coverage", | ||
"test:watch": "yarn vitest --watch", | ||
"test:build": "yarn vitest --mode test-build", | ||
"test": "vitest", | ||
"test:coverage": "vitest --coverage", | ||
"test:watch": "vitest --watch", | ||
"test:build": "vitest --mode test-build", | ||
"tsd": "tsc -p test-dts/tsconfig.tsd.json", | ||
"build": "yarn rollup -c rollup.config.js", | ||
"build": "rollup -c rollup.config.js", | ||
"lint": "eslint --ext .ts src/ tests/", | ||
"lint:fix": "yarn lint --fix", | ||
"lint:fix": "pnpm run lint --fix", | ||
"docs:dev": "vitepress dev docs", | ||
"docs:build": "vitepress build docs", | ||
"vue-tsc": "vue-tsc --noEmit -p tsconfig.volar.json", | ||
"prepublishOnly": "yarn build" | ||
"prepublishOnly": "pnpm run build" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
|
@@ -106,5 +108,15 @@ | |
"type": "git", | ||
"url": "git+https://github.com/vuejs/test-utils.git" | ||
}, | ||
"homepage": "https://github.com/vuejs/test-utils" | ||
"homepage": "https://github.com/vuejs/test-utils", | ||
"pnpm": { | ||
"peerDependencyRules": { | ||
"ignoreMissing": [ | ||
"@algolia/client-search", | ||
"@types/react", | ||
"react", | ||
"react-dom" | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.