Skip to content

Commit 16c077d

Browse files
committed
fix: use cwd() as backup for getting path
1 parent 176b987 commit 16c077d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: nativescript-angular/bin/update-app-ng-deps

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function updateDeps(deps, devDeps, newDeps) {
5656
}
5757

5858
const pluginDeps = pluginPackageJson.peerDependencies;
59-
const projectPath = process.env.INIT_CWD || path.dirname(path.dirname(pluginPath));
59+
const projectPath = process.env.INIT_CWD || process.cwd() || path.dirname(path.dirname(pluginPath));
6060
const appPackageJsonPath = path.join(projectPath, "package.json");
6161
const appPackageJson = JSON.parse(fs.readFileSync(appPackageJsonPath, "utf8"));
6262

0 commit comments

Comments
 (0)