Skip to content

Fixes e2e tests #4377

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Apr 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/e2e-create-vue-workflow.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#
on:
schedule:
- cron: '0 */4 * * *'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/e2e-parcel-workflow.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#
on:
schedule:
- cron: '0 */4 * * *'
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/e2e-preact-cli-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
23 changes: 23 additions & 0 deletions .yarn/versions/66ce113a.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"
16 changes: 16 additions & 0 deletions packages/plugin-compat/sources/extensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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`]: `*`,
},
}],
];