Add dynamic targets to generate Verdaccion environments for other tasks, e.g. testing.
See nx-verdaccio plugin docs for details
This executor helps to initiate an environment folder and installs it`s dependent projects.
// project.json
{
"name": "my-project",
"targets": {
"env-setup": {
"executor": "@code-pushup/nx-verdaccio:env-setup",
"options": {
"keepServerRunning": false
"envRoot": "/tmp/test-npm-workspace"
"verbose": true,
}
}
}
}
Read more under setup executor docs.
This executor helps to initiate environment into a given folder.
// project.json
{
"name": "my-project",
"targets": {
"nx-verdaccio-env-bootstrap": {
"executor": "@code-pushup/nx-verdaccio:env-bootstrap",
"options": {
"keepServerRunning": false
"envRoot": "/tmp/test-npm-workspace"
"verbose": true,
}
}
}
}
Read more under bootstrap executor docs.
This executor helps to kill processes by ProcessID
or a JSON file containing a property pid
as number.
// project.json
{
"name": "my-project",
"targets": {
"nx-verdaccio-kill-process": {
"executor": "@push-based/nx-verdaccio:kill-process"
"options": {
"pid": "42312"
"filePath": "/tmp/test-npm-workspace/process-id.json"
"verbose": true,
}
}
}
}
Read more under kill-process executor docs.
This executor helps to install a pubishable
projects into a given environment folder.
// project.json
{
"name": "my-project",
"targets": {
"nx-verdaccio-npm-install": {
"executor": "@code-pushup/nx-verdaccio:pkg-install",
"options": {
"pkgVersion": "1.2.3"
"envRoot": "/tmp/test-npm-workspace"
"verbose": true,
}
}
}
}
Read more under pkg install executor docs.
This executor helps to publish a pubishable
projects into a given environment folder.
// project.json
{
"name": "my-project",
"targets": {
"nx-verdaccio-npm-publish": {
"executor": "@code-pushup/nx-verdaccio:pkg-publish",
"options": {
"pkgVersion": "1.2.3"
"envRoot": "/tmp/test-npm-workspace"
"verbose": true,
}
}
}
}
Read more under pkg publish executor docs.
Debug full environment in 1 setup:
-
nx run utils-e2e:env-setup
- setup environment forutils-e2e
-
nx run utils-e2e:env-setup --keepServerRunning
- keeps Verdaccio running after setup -
nx run utils-e2e:env-cleanup
- stops the Verdaccio server forutils-e2e
folder and cleans up files
Debug full environment in 2 steps:
-
nx run utils-e2e:bootstrap-env
- setup folders and starts Verdaccio forutils-e2e
-
nx run utils-e2e:install-env
- bootstraps and installs all dependencies forutils-e2e
-
nx run utils-e2e:stop-verdaccio
- stops the Verdaccio server forutils-e2e
Debug packages:
-
nx run utils-e2e:bootstrap-env
- setup folders and starts Verdaccio forutils-e2e
-
nx run utils:pkg-publish --envProject utils-e2e
- publishesutils
andmodels
to the Verdaccio registry configured forutils-e2e
-
nx run utils:pkg-install --envProject utils-e2e
- installsutils
andmodels
from the Verdaccio registry configured forutils-e2e
-
nx run utils-e2e:stop-verdaccio
- stops the Verdaccio server forutils-e2e