From 795d08504eff474b634ec506aea1af0623427563 Mon Sep 17 00:00:00 2001 From: Nathan Fritz Date: Tue, 21 Sep 2021 19:51:39 -0700 Subject: [PATCH] remove stray semicolon --- lib/pkg.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pkg.js b/lib/pkg.js index 2921b59778112..87d1fdc57fceb 100644 --- a/lib/pkg.js +++ b/lib/pkg.js @@ -68,7 +68,7 @@ class Pkg extends BaseCommand { const result = {} if (this.npm.config.get('include-workspace-root')) { - this.prefix = this.npm.localPrefix; + this.prefix = this.npm.localPrefix const name = readPackageName(this.prefix) result[name] = await this.pkg(args) }