Skip to content

Commit cd3c16d

Browse files
arcanismerceyz
authored andcommitted
Fixes e2e tests (#4377)
* Fixes e2e tests * Fixes typo * Triggers the Vue / Parcel workflows * Versions
1 parent 30c60c1 commit cd3c16d

File tree

5 files changed

+45
-0
lines changed

5 files changed

+45
-0
lines changed

.github/workflows/e2e-create-vue-workflow.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#
12
on:
23
schedule:
34
- cron: '0 */4 * * *'

.github/workflows/e2e-parcel-workflow.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#
12
on:
23
schedule:
34
- cron: '0 */4 * * *'

.github/workflows/e2e-preact-cli-workflow.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ jobs:
3636
source scripts/e2e-setup-ci.sh
3737
git clone https://github.com/preactjs-templates/typescript.git default
3838
cd default/template
39+
40+
# TODO: Remove once https://github.com/preactjs-templates/typescript/issues/71 is fixed
41+
rm -rf tests
42+
3943
touch yarn.lock
4044
echo $(cat package.json | jq '.name = "pnp-test"') > package.json
4145
yarn

.yarn/versions/66ce113a.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
releases:
2+
"@yarnpkg/cli": patch
3+
"@yarnpkg/plugin-compat": patch
4+
5+
declined:
6+
- "@yarnpkg/plugin-constraints"
7+
- "@yarnpkg/plugin-dlx"
8+
- "@yarnpkg/plugin-essentials"
9+
- "@yarnpkg/plugin-init"
10+
- "@yarnpkg/plugin-interactive-tools"
11+
- "@yarnpkg/plugin-nm"
12+
- "@yarnpkg/plugin-npm-cli"
13+
- "@yarnpkg/plugin-pack"
14+
- "@yarnpkg/plugin-patch"
15+
- "@yarnpkg/plugin-pnp"
16+
- "@yarnpkg/plugin-pnpm"
17+
- "@yarnpkg/plugin-stage"
18+
- "@yarnpkg/plugin-typescript"
19+
- "@yarnpkg/plugin-version"
20+
- "@yarnpkg/plugin-workspace-tools"
21+
- "@yarnpkg/builder"
22+
- "@yarnpkg/core"
23+
- "@yarnpkg/doctor"

packages/plugin-compat/sources/extensions.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -789,4 +789,20 @@ export const packageExtensions: Array<[string, PackageExtensionData]> = [
789789
'reflect-metadata': `^0.1.13`,
790790
},
791791
}],
792+
// https://github.com/JuniorTour/vue-template-babel-compiler/pull/40
793+
[`vue-template-babel-compiler@*`, {
794+
peerDependencies: {
795+
[`vue-template-compiler`]: `^2.6.0`,
796+
},
797+
}],
798+
[`@parcel/transformer-image@*`, {
799+
peerDependencies: {
800+
[`@parcel/core`]: `*`,
801+
},
802+
}],
803+
[`@parcel/transformer-js@*`, {
804+
peerDependencies: {
805+
[`@parcel/core`]: `*`,
806+
},
807+
}],
792808
];

0 commit comments

Comments
 (0)