Fix importing graphQL printer which failed inferWebhooks (#72)

This commit is contained in:
Lukasz Ostrowski 2022-10-10 11:56:23 +02:00 committed by GitHub
parent 390143db17
commit ff0e25f8dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
import fg from "fast-glob"; import fg from "fast-glob";
import { print } from "graphql/language/printer"; import { print } from "graphql/language/printer.js";
import path from "path"; import path from "path";
const capitalize = (value: string) => value.charAt(0).toUpperCase() + value.slice(1); const capitalize = (value: string) => value.charAt(0).toUpperCase() + value.slice(1);