Skip to content

Commit

Permalink
fix: compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Feb 20, 2024
1 parent 0f06715 commit a1c4b11
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/generators/command.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {Interfaces} from '@oclif/core'
import {pascalCase} from 'change-case'
import * as path from 'node:path'
import * as Generator from 'yeoman-generator'
import path from 'node:path'
import Generator from 'yeoman-generator'

import {GeneratorOptions} from '../types'

Expand Down
4 changes: 2 additions & 2 deletions src/generators/hook.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {Interfaces} from '@oclif/core'
import * as path from 'node:path'
import * as Generator from 'yeoman-generator'
import path from 'node:path'
import Generator from 'yeoman-generator'

import {GeneratorOptions} from '../types'
import {castArray} from '../util'
Expand Down
2 changes: 1 addition & 1 deletion src/tarballs/build.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {Interfaces} from '@oclif/core'
import * as findYarnWorkspaceRoot from 'find-yarn-workspace-root'
import findYarnWorkspaceRoot from 'find-yarn-workspace-root'
import {copy, emptyDir, move, readJSON, remove, writeJSON} from 'fs-extra'
import {exec as execSync} from 'node:child_process'
import {existsSync} from 'node:fs'
Expand Down
2 changes: 1 addition & 1 deletion src/tarballs/node.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {Interfaces} from '@oclif/core'
import * as retry from 'async-retry'
import retry from 'async-retry'
import {copy, ensureDir, move} from 'fs-extra'
import got from 'got'
import {exec as execSync} from 'node:child_process'
Expand Down
2 changes: 1 addition & 1 deletion src/util.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {Errors} from '@oclif/core'
import {exec as execSync} from 'node:child_process'
import * as crypto from 'node:crypto'
import crypto from 'node:crypto'
import {createReadStream} from 'node:fs'
import * as os from 'node:os'
import {promisify} from 'node:util'
Expand Down

0 comments on commit a1c4b11

Please sign in to comment.