We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f2fb7a commit 58a5137Copy full SHA for 58a5137
packages/cli/src/commands/metadata/command.ts
@@ -8,7 +8,6 @@ import { readFileSync, writeFileSync } from 'node:fs';
8
import { join } from 'node:path';
9
10
export default async () => {
11
- console.log('Updating package.json ...');
12
updatePackageMetadata();
13
};
14
@@ -82,7 +81,8 @@ export function updatePackageMetadata() {
82
81
const packageJSON = JSON.parse(
83
readFileSync(packageJSONPath, 'utf8'),
84
) as packageJSON;
85
- // console.log(` @ working in ${process.cwd()}`)
+
+ console.log(`Updating ${process.cwd()} / package.json`);
86
87
// compute the root dir and relative path to the current dir
88
const [rootdir, relative_path] = path.resolveRelativeFromAbsolute(
0 commit comments