Skip to content

Commit

Permalink
transform default exports to named exports #2
Browse files Browse the repository at this point in the history
  • Loading branch information
Kilbourne committed Dec 15, 2023
1 parent 61e6be9 commit 23ae4d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Installer.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { cleanup, makeDir } from './utils/fs'
import Package from './Package'
import WpPackage from './WpPackage'
import { Package } from './Package'
import { WpPackage } from './WpPackage'
import { isWPCLIAvailable, runPostInstallCommands } from './utils/commands'
import { WPMMconfig, WPMMpaths } from './types'

Expand All @@ -9,7 +9,7 @@ import { WPMMconfig, WPMMpaths } from './types'
*
* @class Installer
*/
export default class Installer {
export class Installer {
/** The configuration object. */
protected config: WPMMconfig

Expand Down

0 comments on commit 23ae4d2

Please sign in to comment.