-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into bwsy/fix/transitionGroupStyleSSR
- Loading branch information
Showing
128 changed files
with
3,922 additions
and
2,711 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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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,51 @@ | ||
{ | ||
$schema: 'https://docs.renovatebot.com/renovate-schema.json', | ||
extends: ['config:base', 'schedule:weekly', 'group:allNonMajor'], | ||
labels: ['dependencies'], | ||
ignorePaths: ['**/__tests__/**'], | ||
rangeStrategy: 'bump', | ||
packageRules: [ | ||
{ | ||
depTypeList: ['peerDependencies'], | ||
enabled: false | ||
}, | ||
{ | ||
groupName: 'test', | ||
matchPackageNames: ['vitest', 'jsdom', 'puppeteer'], | ||
matchPackagePrefixes: ['@vitest'] | ||
}, | ||
{ | ||
groupName: 'playground', | ||
matchFileNames: [ | ||
'packages/sfc-playground/package.json', | ||
'packages/template-explorer/package.json' | ||
] | ||
}, | ||
{ | ||
groupName: 'compiler', | ||
matchPackageNames: ['magic-string'], | ||
matchPackagePrefixes: ['@babel', 'postcss'] | ||
}, | ||
{ | ||
groupName: 'build', | ||
matchPackageNames: ['vite', 'terser'], | ||
matchPackagePrefixes: ['rollup', 'esbuild', '@rollup', '@vitejs'] | ||
}, | ||
{ | ||
groupName: 'lint', | ||
matchPackageNames: ['simple-git-hooks', 'lint-staged'], | ||
matchPackagePrefixes: ['@typescript-eslint', 'eslint', 'prettier'] | ||
} | ||
], | ||
ignoreDeps: [ | ||
'vue', | ||
|
||
// manually bumping | ||
'node', | ||
'typescript', | ||
|
||
// ESM only | ||
'chalk', | ||
'estree-walker' | ||
] | ||
} |
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,33 @@ | ||
name: autofix.ci | ||
|
||
on: | ||
pull_request: | ||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
autofix: | ||
runs-on: ubuntu-latest | ||
env: | ||
PUPPETEER_SKIP_DOWNLOAD: 'true' | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install pnpm | ||
uses: pnpm/action-setup@v2 | ||
|
||
- name: Set node version to 18 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
cache: pnpm | ||
|
||
- run: pnpm install | ||
|
||
- name: Run eslint | ||
run: pnpm run lint --fix | ||
|
||
- name: Run prettier | ||
run: pnpm run format | ||
|
||
- uses: autofix-ci/action@8caa572fd27b0019a65e4c695447089c8d3138b9 |
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,33 @@ | ||
name: canary minor release | ||
on: | ||
# Runs every Monday at 1 AM UTC (9:00 AM in Singapore) | ||
schedule: | ||
- cron: 0 1 * * MON | ||
workflow_dispatch: | ||
|
||
jobs: | ||
canary: | ||
# prevents this action from running on forks | ||
if: github.repository == 'vuejs/core' | ||
runs-on: ubuntu-latest | ||
environment: Release | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: minor | ||
|
||
- name: Install pnpm | ||
uses: pnpm/action-setup@v2 | ||
|
||
- name: Set node version to 18 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
registry-url: 'https://registry.npmjs.org' | ||
cache: 'pnpm' | ||
|
||
- run: pnpm install | ||
|
||
- run: pnpm release --canary --tag minor | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.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
Oops, something went wrong.