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 986470e commit 34fa9e0Copy full SHA for 34fa9e0
packages/nx-python/src/generators/migrate-to-shared-venv/generator.ts
@@ -110,6 +110,12 @@ function updateRootPoetryLock() {
110
}
111
112
async function generator(host: Tree, options: Schema) {
113
+ if (host.exists('uv.lock')) {
114
+ throw new Error(
115
+ 'Uv project detected, this generator is only for poetry projects.',
116
+ );
117
+ }
118
+
119
await checkPoetryExecutable();
120
121
await addFiles(host, options);
0 commit comments