Skip to content

Commit

Permalink
fix(compat): update vue-loader entry (#4389)
Browse files Browse the repository at this point in the history
  • Loading branch information
merceyz committed Apr 25, 2022
1 parent 2cf0a8f commit 1ac2ff4
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .yarn/versions/e19f1175.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
releases:
"@yarnpkg/cli": patch
"@yarnpkg/plugin-compat": patch

declined:
- "@yarnpkg/plugin-constraints"
- "@yarnpkg/plugin-dlx"
- "@yarnpkg/plugin-essentials"
- "@yarnpkg/plugin-init"
- "@yarnpkg/plugin-interactive-tools"
- "@yarnpkg/plugin-nm"
- "@yarnpkg/plugin-npm-cli"
- "@yarnpkg/plugin-pack"
- "@yarnpkg/plugin-patch"
- "@yarnpkg/plugin-pnp"
- "@yarnpkg/plugin-pnpm"
- "@yarnpkg/plugin-stage"
- "@yarnpkg/plugin-typescript"
- "@yarnpkg/plugin-version"
- "@yarnpkg/plugin-workspace-tools"
- "@yarnpkg/builder"
- "@yarnpkg/core"
- "@yarnpkg/doctor"
17 changes: 16 additions & 1 deletion packages/plugin-compat/sources/extensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -498,11 +498,26 @@ export const packageExtensions: Array<[string, PackageExtensionData]> = [
},
}],
// https://github.com/vuejs/vue-loader/pull/1853
[`vue-loader@<=16.3.1`, {
// https://github.com/vuejs/vue-loader/commit/089473af97077b8e14b3feff48d32d2733ad792c
[`vue-loader@<=16.3.3`, {
peerDependencies: {
'@vue/compiler-sfc': `^3.0.8`,
webpack: `^4.1.0 || ^5.0.0-0`,
},
peerDependenciesMeta: {
'@vue/compiler-sfc': optionalPeerDep,
},
}],
// https://github.com/vuejs/vue-loader/pull/1944
[`vue-loader@^16.7.0`, {
peerDependencies: {
'@vue/compiler-sfc': `^3.0.8`,
vue: `^3.2.13`,
},
peerDependenciesMeta: {
'@vue/compiler-sfc': optionalPeerDep,
vue: optionalPeerDep,
},
}],
// https://github.com/salesforce-ux/scss-parser/pull/43
[`scss-parser@*`, {
Expand Down

0 comments on commit 1ac2ff4

Please sign in to comment.