Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@nxlv/python

Package Overview
Dependencies
Maintainers
0
Versions
92
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nxlv/python - npm Package Compare versions

Comparing version 20.3.1 to 20.3.2

6

CHANGELOG.md

@@ -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 @@

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc