Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #6078 from trufflesuite/fix-import
Browse files Browse the repository at this point in the history
Bug fix: correct resolver import in legacy workflow compile
  • Loading branch information
eggplantzzz committed Jun 8, 2023
2 parents 7fa3b70 + e51fd03 commit dcfdfb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/workflow-compile/legacy/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const { Shims } = require("@truffle/compile-common");
const expect = require("@truffle/expect");
const Config = require("@truffle/config");
const Artifactor = require("@truffle/artifactor");
const Resolver = require("@truffle/resolver");
const Resolver = require("@truffle/resolver").default;

const SUPPORTED_COMPILERS = {
solc: solcCompile,
Expand Down

0 comments on commit dcfdfb3

Please sign in to comment.