Skip to content

Commit

Permalink
Fix CI failures
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Dec 5, 2021
1 parent 57d8b3c commit 8c34349
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
@@ -1,5 +1,6 @@
import { parseSync, traverse } from "@babel/core";
import { shouldTransform } from "../lib/util.js";
import babel from "@babel/core";
const { parseSync, traverse } = babel;

function getPath(input, parserOpts = {}) {
let targetPath;
Expand Down
@@ -1,5 +1,6 @@
import { parseSync, traverse } from "@babel/core";
import { shouldTransform } from "../lib/util.js";
import babel from "@babel/core";
const { parseSync, traverse } = babel;

function getPath(input, parserOpts = {}) {
let targetPath;
Expand Down
@@ -1,5 +1,6 @@
import { willPathCastToBoolean } from "../lib/util.js";
import { parseSync, traverse } from "@babel/core";
import babel from "@babel/core";
const { parseSync, traverse } = babel;

function getPath(input, parserOpts) {
let targetPath;
Expand Down

0 comments on commit 8c34349

Please sign in to comment.