Skip to content

Commit deb1c1a

Browse files
committed
🔨 Refactor: reorder imports
1 parent fa7fb37 commit deb1c1a

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

test/cli.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import path from 'path';
1+
import { homedir } from 'os';
22
import test from 'ava';
3+
import path from 'path';
34
import execa from 'execa';
4-
import { homedir } from 'os';
55

66
import pkg from '../package.json';
77

test/getConfig.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
import fs from 'fs-extra';
21
import os from 'os';
32
import test from 'ava';
43
import path from 'path';
4+
import fs from 'fs-extra';
55
import json from 'json-extra';
6+
67
import getConfig from '../lib/getConfig';
78

89
const cwd = process.cwd();

test/prompConfig.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
import fs from 'fs-extra';
1+
import os from 'os';
22
import test from 'ava';
33
import path from 'path';
44
import chalk from 'chalk';
5+
import fs from 'fs-extra';
56
import json from 'json-extra';
6-
import os from 'os';
7+
78
import getConfig from '../lib/getConfig';
89
import { choices, questions } from '../lib/promptConfig';
910

0 commit comments

Comments
 (0)