Skip to content

Commit 58a5137

Browse files
committed
quieter output; updated sample; regen yarn lock
Signed-off-by: Nick Boldt <[email protected]>
1 parent 9f2fb7a commit 58a5137

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cli/src/commands/metadata/command.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import { readFileSync, writeFileSync } from 'node:fs';
88
import { join } from 'node:path';
99

1010
export default async () => {
11-
console.log('Updating package.json ...');
1211
updatePackageMetadata();
1312
};
1413

@@ -82,7 +81,8 @@ export function updatePackageMetadata() {
8281
const packageJSON = JSON.parse(
8382
readFileSync(packageJSONPath, 'utf8'),
8483
) as packageJSON;
85-
// console.log(` @ working in ${process.cwd()}`)
84+
85+
console.log(`Updating ${process.cwd()} / package.json`);
8686

8787
// compute the root dir and relative path to the current dir
8888
const [rootdir, relative_path] = path.resolveRelativeFromAbsolute(

0 commit comments

Comments
 (0)