Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 6757cb8

Browse files
committed
fix(ava): vue-template-compiler version conflict on require-extension-hooks-vue
1 parent ae72f76 commit 6757cb8

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
module.exports = {
2+
apply (pkg, generator) {
3+
const { pm } = generator.answers
4+
if (pm === 'npm') {
5+
// Temporary fix for https://github.com/jackmellis/require-extension-hooks-vue/issues/49
6+
// Remove this when the issue is fixed
7+
pkg.overrides = {
8+
'require-extension-hooks-vue': {
9+
'vue-template-compiler': '$vue-template-compiler'
10+
}
11+
}
12+
}
13+
return pkg
14+
}
15+
}
Binary file not shown.

0 commit comments

Comments
 (0)