diff --git a/.github/workflows/e2e-create-vue-workflow.yml b/.github/workflows/e2e-create-vue-workflow.yml index 07168cd0f754..91472e64e879 100644 --- a/.github/workflows/e2e-create-vue-workflow.yml +++ b/.github/workflows/e2e-create-vue-workflow.yml @@ -1,3 +1,4 @@ +# on: schedule: - cron: '0 */4 * * *' diff --git a/.github/workflows/e2e-parcel-workflow.yml b/.github/workflows/e2e-parcel-workflow.yml index d81b3c71c8eb..4a8ff0f64fb9 100644 --- a/.github/workflows/e2e-parcel-workflow.yml +++ b/.github/workflows/e2e-parcel-workflow.yml @@ -1,3 +1,4 @@ +# on: schedule: - cron: '0 */4 * * *' diff --git a/.github/workflows/e2e-preact-cli-workflow.yml b/.github/workflows/e2e-preact-cli-workflow.yml index dbf03e7eab52..18f7ec3aeb58 100644 --- a/.github/workflows/e2e-preact-cli-workflow.yml +++ b/.github/workflows/e2e-preact-cli-workflow.yml @@ -36,6 +36,10 @@ jobs: source scripts/e2e-setup-ci.sh git clone https://github.com/preactjs-templates/typescript.git default cd default/template + + # TODO: Remove once https://github.com/preactjs-templates/typescript/issues/71 is fixed + rm -rf tests + touch yarn.lock echo $(cat package.json | jq '.name = "pnp-test"') > package.json yarn diff --git a/.yarn/versions/66ce113a.yml b/.yarn/versions/66ce113a.yml new file mode 100644 index 000000000000..1494bd471424 --- /dev/null +++ b/.yarn/versions/66ce113a.yml @@ -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" diff --git a/packages/plugin-compat/sources/extensions.ts b/packages/plugin-compat/sources/extensions.ts index 525d3164437c..6358b2400604 100644 --- a/packages/plugin-compat/sources/extensions.ts +++ b/packages/plugin-compat/sources/extensions.ts @@ -789,4 +789,20 @@ export const packageExtensions: Array<[string, PackageExtensionData]> = [ 'reflect-metadata': `^0.1.13`, }, }], + // https://github.com/JuniorTour/vue-template-babel-compiler/pull/40 + [`vue-template-babel-compiler@*`, { + peerDependencies: { + [`vue-template-compiler`]: `^2.6.0`, + }, + }], + [`@parcel/transformer-image@*`, { + peerDependencies: { + [`@parcel/core`]: `*`, + }, + }], + [`@parcel/transformer-js@*`, { + peerDependencies: { + [`@parcel/core`]: `*`, + }, + }], ];