Skip to content

Commit

Permalink
fix: fix Unlink props
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Aug 8, 2021
1 parent bc0a6e9 commit 2e3e54a
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/unlink.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,8 @@ import fs from "./fs"
import type { CliOptions, RunCallback } from "./apm-cli"

export default class Unlink extends Command {
constructor() {
super()
this.devPackagesPath = path.join(config.getAtomDirectory(), "dev", "packages")
this.packagesPath = path.join(config.getAtomDirectory(), "packages")
}
devPackagesPath = path.join(config.getAtomDirectory(), "dev", "packages")
packagesPath = path.join(config.getAtomDirectory(), "packages")

parseOptions(argv: string[]) {
const options = yargs(argv).wrap(Math.min(100, yargs.terminalWidth()))
Expand Down

0 comments on commit 2e3e54a

Please sign in to comment.