Skip to content

Commit

Permalink
[Chore] Clean up legacy style imports
Browse files Browse the repository at this point in the history
  • Loading branch information
bcherny committed May 2, 2024
1 parent 872a057 commit e53bb80
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/cli.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/usr/bin/env node

import minimist = require('minimist')
import minimist from 'minimist'
import {readFile, writeFile, existsSync, lstatSync, readdirSync} from 'mz/fs'
import * as mkdirp from 'mkdirp'
import {glob} from 'glob'
import isGlob = require('is-glob')
import isGlob from 'is-glob'
import {join, resolve, dirname, basename} from 'path'
import {compile, DEFAULT_OPTIONS, Options} from './index'
import {pathTransform, error} from './utils'
Expand Down
2 changes: 1 addition & 1 deletion test/testCLI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import test from 'ava'
import {execSync} from 'child_process'
import {readFileSync, unlinkSync, readdirSync, existsSync, lstatSync} from 'fs'
import {resolve, posix} from 'path'
import rimraf = require('rimraf')
import * as rimraf from 'rimraf'

export function run() {
test('pipe in, pipe out', t => {
Expand Down

0 comments on commit e53bb80

Please sign in to comment.