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 d7127f1 commit add61acCopy full SHA for add61ac
packages/compiler/src/index.ts
@@ -81,9 +81,10 @@ class LesyCompiler {
81
82
return {
83
parse: (argv: string[]) =>
84
- lesy.then((l: typeof LesyCoreClass) =>
85
- l.run(argv || process.argv.slice(2)),
86
- ),
+ lesy.then((l: typeof LesyCoreClass) => {
+ if (global["lesyWorkspace"]) return l;
+ l.run(argv || process.argv.slice(2));
87
+ }),
88
};
89
}
90
0 commit comments