forked from vuejs/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: merge branch 'minor' of https://github.com/vuejs/core into fea…
…t/onEffectCleanup-and-baseWatch
- Loading branch information
Showing
481 changed files
with
13,147 additions
and
12,399 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# update prettier & eslint config (#9162) | ||
bfe6b459d3a0ce6168611ee1ac7e6e789709df9d |
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 +1,4 @@ | ||
dist | ||
*.md | ||
*.html | ||
pnpm-lock.yaml |
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,5 @@ | ||
semi: false | ||
singleQuote: true | ||
printWidth: 80 | ||
trailingComma: 'none' | ||
arrowParens: 'avoid' | ||
{ | ||
"semi": false, | ||
"singleQuote": true, | ||
"arrowParens": "avoid" | ||
} |
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,6 +1,6 @@ | ||
{ | ||
"private": true, | ||
"version": "3.4.0-rc.1", | ||
"version": "3.4.0-rc.2", | ||
"packageManager": "[email protected]", | ||
"type": "module", | ||
"scripts": { | ||
|
@@ -13,9 +13,9 @@ | |
"size-esm-runtime": "node scripts/build.js vue -f esm-bundler-runtime", | ||
"size-esm": "node scripts/build.js runtime-dom runtime-core reactivity shared -f esm-bundler", | ||
"check": "tsc --incremental --noEmit", | ||
"lint": "eslint --cache --ext .ts packages/*/{src,__tests__}/**.ts", | ||
"format": "prettier --write --cache \"**/*.[tj]s?(x)\"", | ||
"format-check": "prettier --check --cache \"**/*.[tj]s?(x)\"", | ||
"lint": "eslint --cache --ext .js,.ts,.tsx .", | ||
"format": "prettier --write --cache .", | ||
"format-check": "prettier --check --cache .", | ||
"test": "vitest", | ||
"test-unit": "vitest -c vitest.unit.config.ts", | ||
"test-e2e": "node scripts/build.js vue -f global -d && vitest -c vitest.e2e.config.ts", | ||
|
@@ -44,14 +44,14 @@ | |
}, | ||
"simple-git-hooks": { | ||
"pre-commit": "pnpm lint-staged && pnpm check", | ||
"commit-msg": "node scripts/verifyCommit.js" | ||
"commit-msg": "node scripts/verify-commit.js" | ||
}, | ||
"lint-staged": { | ||
"*.{js,json}": [ | ||
"prettier --write" | ||
], | ||
"*.ts?(x)": [ | ||
"eslint", | ||
"eslint --fix", | ||
"prettier --parser=typescript --write" | ||
] | ||
}, | ||
|
@@ -72,6 +72,7 @@ | |
"@types/minimist": "^1.2.5", | ||
"@types/node": "^20.10.5", | ||
"@types/semver": "^7.5.5", | ||
"@typescript-eslint/eslint-plugin": "^6.16.0", | ||
"@typescript-eslint/parser": "^6.15.0", | ||
"@vitest/coverage-istanbul": "^1.1.0", | ||
"@vue/consolidate": "0.17.3", | ||
|
@@ -81,6 +82,7 @@ | |
"esbuild-plugin-polyfill-node": "^0.3.0", | ||
"eslint": "^8.56.0", | ||
"eslint-define-config": "^1.24.1", | ||
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1", | ||
"eslint-plugin-jest": "^27.6.0", | ||
"estree-walker": "^2.0.2", | ||
"execa": "^8.0.1", | ||
|
Oops, something went wrong.