From a5231f80cb2db1a58eea60c6026f6aa28c75c40a Mon Sep 17 00:00:00 2001 From: Max Strater Date: Fri, 23 Feb 2024 17:59:44 -0800 Subject: [PATCH] add test script to demonstrate bug --- test.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 test.js diff --git a/test.js b/test.js new file mode 100644 index 000000000..6649f8a25 --- /dev/null +++ b/test.js @@ -0,0 +1,6 @@ +const { detectProjects } = require('lerna/utils'); + +const test = async () => { + const { projectGraph, projectFileMap } = await detectProjects(); +}; +test();