We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c22691 commit da157f5Copy full SHA for da157f5
packages/graphql-tag-pluck/src/index.ts
@@ -405,6 +405,7 @@ const MissingGlimmerCompilerError = new Error(
405
406
async function loadVueCompilerAsync() {
407
try {
408
+ // eslint-disable-next-line import/no-extraneous-dependencies
409
return await import('@vue/compiler-sfc');
410
} catch {
411
throw MissingVueTemplateCompilerError;
@@ -413,6 +414,7 @@ async function loadVueCompilerAsync() {
413
414
415
function loadVueCompilerSync() {
416
417
418
return require('@vue/compiler-sfc');
419
420
0 commit comments