Skip to content

Commit 3fd1834

Browse files
authored
fix: Fixes destructure of fs-extra (#1279)
1 parent acb82e3 commit 3fd1834

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/test-helpers/src/checkup-fixturify-project.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ import * as fixturify from 'fixturify';
55
import Project from 'fixturify-project';
66
import stringify from 'json-stable-stringify';
77
import type { PackageJson } from 'type-fest';
8-
import { symlinkSync, mkdirpSync } from 'fs-extra';
8+
import fs from 'fs-extra';
99
import walkSync from 'walk-sync';
1010

11+
const { symlinkSync, mkdirpSync } = fs;
12+
1113
const ROOT = process.cwd();
1214

1315
/**

0 commit comments

Comments
 (0)