Skip to content

Commit 65cc2e5

Browse files
Simekmeta-codesync[bot]
authored andcommitted
fix print-packages script (#55019)
Summary: Running `print-packages` script from monorepo root results in a require error. This PR updates the import path for `getPackages` utit to fix the script, which now output correct data. ## Changelog: [INTERNAL] [FIXED] - Fix `print-packages` script Pull Request resolved: #55019 Test Plan: <img width="1344" height="602" alt="Screenshot 2026-01-02 at 19 58 51" src="https://github.com/user-attachments/assets/d6dd1ab5-e0da-4878-b622-7e5f5aa0865b" /> Reviewed By: cipolleschi Differential Revision: D90104112 Pulled By: cortinico fbshipit-source-id: a44115bf44725eaa8935568706981fe6a3826940
1 parent f36fd46 commit 65cc2e5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/monorepo/print/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @noflow
99
*/
1010

11-
const {getPackages} = require('../../utils/monorepo');
11+
const {getPackages} = require('../../shared/monorepoUtils');
1212
const {exit} = require('shelljs');
1313
const yargs = require('yargs');
1414

0 commit comments

Comments
 (0)