@nxlv/python
Advanced tools
Comparing version 0.0.1 to 0.0.2
@@ -8,4 +8,34 @@ { | ||
"description": "build executor" | ||
}, | ||
"add": { | ||
"implementation": "./src/executors/add/executor", | ||
"schema": "./src/executors/add/schema.json", | ||
"description": "Add a dependency to the project" | ||
}, | ||
"flake8": { | ||
"implementation": "./src/executors/flake8/executor", | ||
"schema": "./src/executors/flake8/schema.json", | ||
"description": "Flake8 Linting Executor" | ||
}, | ||
"tox": { | ||
"implementation": "./src/executors/tox/executor", | ||
"schema": "./src/executors/tox/schema.json", | ||
"description": "Nx Python Tox Executor" | ||
}, | ||
"install": { | ||
"implementation": "./src/executors/install/executor", | ||
"schema": "./src/executors/install/schema.json", | ||
"description": "Nx Python Poetry Install" | ||
}, | ||
"update": { | ||
"implementation": "./src/executors/update/executor", | ||
"schema": "./src/executors/update/schema.json", | ||
"description": "Poetry Update Wrapper Executor" | ||
}, | ||
"remove": { | ||
"implementation": "./src/executors/remove/executor", | ||
"schema": "./src/executors/remove/schema.json", | ||
"description": "Poetry Remove Wrapper Executor" | ||
} | ||
} | ||
} |
@@ -6,8 +6,8 @@ { | ||
"generators": { | ||
"nx-python": { | ||
"factory": "./src/generators/nx-python/generator", | ||
"schema": "./src/generators/nx-python/schema.json", | ||
"description": "nx-python generator" | ||
"project": { | ||
"factory": "./src/generators/project/generator", | ||
"schema": "./src/generators/project/schema.json", | ||
"description": "python project generator" | ||
} | ||
} | ||
} |
{ | ||
"name": "@nxlv/python", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Custom NX Plugin to support the Python language", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
96470
1119