Skip to content

Commit

Permalink
a few missed re-orderings
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Stramel committed Jun 19, 2020
1 parent d07392c commit 5b6c83b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/commands/add-rm.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {CommandOptions} from '../util';
import {command as installCommand} from './install';
import {promises as fs} from 'fs';
import got from 'got';
import path from 'path';
import {promises as fs} from 'fs';
import {CommandOptions} from '../util';
import {command as installCommand} from './install';

export async function addCommand(addValue: string, commandOptions: CommandOptions) {
const {cwd, config, pkgManifest} = commandOptions;
Expand Down
2 changes: 1 addition & 1 deletion src/commands/install.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import {ImportSpecifier, init as initESModuleLexer, parse} from 'es-module-lexer';
import rollupPluginAlias from '@rollup/plugin-alias';
import rollupPluginCommonjs, {RollupCommonJSOptions} from '@rollup/plugin-commonjs';
import rollupPluginJson from '@rollup/plugin-json';
import rollupPluginNodeResolve from '@rollup/plugin-node-resolve';
import rollupPluginReplace from '@rollup/plugin-replace';
import {init as initESModuleLexer, parse} from 'es-module-lexer';
import fs from 'fs';
import * as colors from 'kleur/colors';
import mkdirp from 'mkdirp';
Expand Down

0 comments on commit 5b6c83b

Please sign in to comment.