Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

19
node_modules/nx/executors.json generated vendored Normal file
View File

@@ -0,0 +1,19 @@
{
"executors": {
"noop": {
"implementation": "./dist/src/executors/noop/noop.impl",
"schema": "./dist/src/executors/noop/schema.json",
"description": "An executor that does nothing"
},
"run-commands": {
"implementation": "./dist/src/executors/run-commands/run-commands.impl",
"schema": "./dist/src/executors/run-commands/schema.json",
"description": "Run any custom commands with Nx."
},
"run-script": {
"implementation": "./dist/src/executors/run-script/run-script.impl",
"schema": "./dist/src/executors/run-script/schema.json",
"description": "Run an NPM script using Nx."
}
}
}