@nxlv/python
Advanced tools
Comparing version 20.3.1 to 20.3.2
@@ -0,1 +1,7 @@ | ||
## [20.3.1](https://github.com/lucasvieirasilva/nx-plugins/compare/nx-python-v20.3.0...nx-python-v20.3.1) (2024-12-31) | ||
### Bug Fixes | ||
- missing `}` bracket in chalk log ([#262](https://github.com/lucasvieirasilva/nx-plugins/issues/262)) ([b72109d](https://github.com/lucasvieirasilva/nx-plugins/commit/b72109d9dfa20c02e9f8b6b8ee846dbbfefebe72)) | ||
# [20.3.0](https://github.com/lucasvieirasilva/nx-plugins/compare/nx-python-v20.2.0...nx-python-v20.3.0) (2024-12-23) | ||
@@ -2,0 +8,0 @@ |
{ | ||
"name": "@nxlv/python", | ||
"description": "Custom NX Plugin to support the Python language", | ||
"version": "20.3.1", | ||
"version": "20.3.2", | ||
"main": "src/index.js", | ||
@@ -6,0 +6,0 @@ "generators": "./generators.json", |
@@ -29,3 +29,3 @@ "use strict"; | ||
const lintingArgs = ['flake8', '--output-file', absPath]; | ||
const provider = yield (0, provider_1.getProvider)(workspaceRoot); | ||
const provider = yield (0, provider_1.getProvider)(workspaceRoot, undefined, undefined, context); | ||
yield provider.run(lintingArgs, workspaceRoot, { | ||
@@ -32,0 +32,0 @@ cwd, |
@@ -15,3 +15,3 @@ "use strict"; | ||
try { | ||
const provider = yield (0, provider_1.getProvider)(workspaceRoot, logger); | ||
const provider = yield (0, provider_1.getProvider)(workspaceRoot, logger, undefined, context); | ||
yield provider.publish(options, context); | ||
@@ -18,0 +18,0 @@ return { |
@@ -19,3 +19,3 @@ "use strict"; | ||
.concat(options.__unparsed__); | ||
const provider = yield (0, provider_1.getProvider)(workspaceRoot); | ||
const provider = yield (0, provider_1.getProvider)(workspaceRoot, undefined, undefined, context); | ||
yield provider.run(commandArgs, workspaceRoot, { | ||
@@ -22,0 +22,0 @@ cwd: projectConfig.root, |
@@ -16,3 +16,3 @@ "use strict"; | ||
process.chdir(workspaceRoot); | ||
const provider = yield (0, provider_1.getProvider)(workspaceRoot); | ||
const provider = yield (0, provider_1.getProvider)(workspaceRoot, undefined, undefined, context); | ||
provider.activateVenv(workspaceRoot); | ||
@@ -19,0 +19,0 @@ const projectConfig = context.projectsConfigurations.projects[context.projectName]; |
@@ -16,3 +16,3 @@ "use strict"; | ||
process.chdir(workspaceRoot); | ||
const provider = yield (0, provider_1.getProvider)(workspaceRoot); | ||
const provider = yield (0, provider_1.getProvider)(workspaceRoot, undefined, undefined, context); | ||
provider.activateVenv(workspaceRoot); | ||
@@ -19,0 +19,0 @@ const projectConfig = context.projectsConfigurations.projects[context.projectName]; |
@@ -18,3 +18,3 @@ "use strict"; | ||
try { | ||
const provider = yield (0, provider_1.getProvider)(workspaceRoot); | ||
const provider = yield (0, provider_1.getProvider)(workspaceRoot, undefined, undefined, context); | ||
yield provider.checkPrerequisites(); | ||
@@ -21,0 +21,0 @@ const projectConfig = context.projectsConfigurations.projects[context.projectName]; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
696482