Skip to content
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

fix(gatsby-plugin-image): Use template from core package #29957

Merged
merged 2 commits into from
Mar 3, 2021
Merged
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
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import * as types from "@babel/types"
import { PluginObj } from "@babel/core"
import type {
PluginObj,
template as BabelTemplate,
types as BabelTypes,
} from "@babel/core"
import { hashOptions, evaluateImageAttributes } from "./babel-helpers"
import fs from "fs-extra"
import path from "path"
import { slash } from "gatsby-core-utils"

import template from "@babel/template"
laurieontech marked this conversation as resolved.
Show resolved Hide resolved
import { stripIndent } from "common-tags"

/**
Expand All @@ -15,8 +17,10 @@ import { stripIndent } from "common-tags"

export default function attrs({
types: t,
template,
}: {
types: typeof types
types: typeof BabelTypes
template: typeof BabelTemplate
}): PluginObj {
return {
visitor: {
Expand Down