Skip to content

Commit

Permalink
🔨 Refactor: reorder imports
Browse files Browse the repository at this point in the history
  • Loading branch information
JPeer264 committed Mar 19, 2017
1 parent fa7fb37 commit deb1c1a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions test/cli.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import path from 'path';
import { homedir } from 'os';
import test from 'ava';
import path from 'path';
import execa from 'execa';
import { homedir } from 'os';

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

Expand Down
3 changes: 2 additions & 1 deletion test/getConfig.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import fs from 'fs-extra';
import os from 'os';
import test from 'ava';
import path from 'path';
import fs from 'fs-extra';
import json from 'json-extra';

import getConfig from '../lib/getConfig';

const cwd = process.cwd();
Expand Down
5 changes: 3 additions & 2 deletions test/prompConfig.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import fs from 'fs-extra';
import os from 'os';
import test from 'ava';
import path from 'path';
import chalk from 'chalk';
import fs from 'fs-extra';
import json from 'json-extra';
import os from 'os';

import getConfig from '../lib/getConfig';
import { choices, questions } from '../lib/promptConfig';

Expand Down

0 comments on commit deb1c1a

Please sign in to comment.