Skip to content

Commit

Permalink
fix(cli): correct rimraf import (#7811)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile authored Dec 19, 2024
1 parent d640638 commit 0891624
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/src/ios/build.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { writeFileSync, unlinkSync } from 'fs-extra';
import { basename, join } from 'path';
import rimraf from 'rimraf';
import { rimraf } from 'rimraf';

import { runTask } from '../common';
import type { Config } from '../definitions';
Expand Down
2 changes: 1 addition & 1 deletion cli/src/tasks/migrate.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { writeFileSync, readFileSync, existsSync } from 'fs-extra';
import { join } from 'path';
import rimraf from 'rimraf';
import { rimraf } from 'rimraf';
import { coerce, gte, lt } from 'semver';

import { getAndroidPlugins } from '../android/common';
Expand Down

0 comments on commit 0891624

Please sign in to comment.