| Modifier and Type | Method and Description |
|---|---|
Task |
Project.addTask(String name)
(experimental) Adds a new task to this project.
|
Task |
Tasks.addTask(String name)
(experimental) Adds a task to a project.
|
Task |
Project.addTask(String name,
TaskOptions props)
(experimental) Adds a new task to this project.
|
Task |
Tasks.addTask(String name,
TaskOptions options)
(experimental) Adds a task to a project.
|
Task |
Task.Builder.build() |
Task |
ProjectBuild.getBuildTask()
(experimental) The task responsible for a full release build.
|
Task |
Project.getBuildTask() |
Task |
Version.getBumpTask() |
Task |
ProjectBuild.getCompileTask()
(experimental) Compiles the code.
|
Task |
Project.getCompileTask() |
Task |
Project.getDefaultTask()
(experimental) This is the "default" task, the one that executes "projen".
|
Task |
ProjectBuild.getPackageTask()
(experimental) The "package" task.
|
Task |
Project.getPackageTask() |
Task |
ProjectBuild.getPostCompileTask()
(experimental) Post-compile task.
|
Task |
Project.getPostCompileTask() |
Task |
ProjectBuild.getPreCompileTask()
(experimental) Pre-compile task.
|
Task |
Project.getPreCompileTask() |
Task |
ProjectBuild.getTestTask()
(experimental) Tests the code.
|
Task |
Project.getTestTask() |
Task |
Version.getUnbumpTask() |
Task |
Project.removeTask(String name)
(experimental) Removes a task from a project.
|
Task |
Tasks.removeTask(String name)
(experimental) Removes a task from a project.
|
Task |
Tasks.tryFind(String name)
(experimental) Finds a task by name.
|
| Modifier and Type | Method and Description |
|---|---|
List<Task> |
Tasks.getAll()
(experimental) All tasks.
|
default List<Task> |
DevEnvironmentOptions.getTasks()
(experimental) An array of tasks that should be run when the container starts.
|
List<Task> |
DevEnvironmentOptions.Jsii$Proxy.getTasks() |
List<Task> |
GitpodOptions.Jsii$Proxy.getTasks() |
| Modifier and Type | Method and Description |
|---|---|
void |
IDevEnvironment.addTasks(Task... tasks)
(experimental) Adds tasks to run when the container starts.
|
void |
IDevEnvironment.Jsii$Proxy.addTasks(Task... tasks)
(experimental) Adds tasks to run when the container starts.
|
default void |
IDevEnvironment.Jsii$Default.addTasks(Task... tasks)
(experimental) Adds tasks to run when the container starts.
|
void |
Gitpod.addTasks(Task... tasks)
(experimental) Add tasks to run when gitpod starts.
|
void |
Task.prependSpawn(Task subtask)
(experimental) Adds a spawn instruction at the beginning of the task.
|
void |
Task.prependSpawn(Task subtask,
TaskStepOptions options)
(experimental) Adds a spawn instruction at the beginning of the task.
|
String |
Project.runTaskCommand(Task task)
(experimental) Returns the shell command to execute in order to run a task.
|
void |
Task.spawn(Task subtask)
(experimental) Spawns a sub-task.
|
void |
Task.spawn(Task subtask,
TaskStepOptions options)
(experimental) Spawns a sub-task.
|
| Modifier and Type | Method and Description |
|---|---|
DevEnvironmentOptions.Builder |
DevEnvironmentOptions.Builder.tasks(List<? extends Task> tasks)
Sets the value of
DevEnvironmentOptions.getTasks() |
Gitpod.Builder |
Gitpod.Builder.tasks(List<? extends Task> tasks)
(experimental) An array of tasks that should be run when the container starts.
|
GitpodOptions.Builder |
GitpodOptions.Builder.tasks(List<? extends Task> tasks)
Sets the value of
DevEnvironmentOptions.getTasks() |
| Modifier and Type | Method and Description |
|---|---|
Task |
IntegrationTest.getAssertTask()
(experimental) Synthesizes the integration test and compares against a local copy (runs during build).
|
Task |
CdkTasks.getDeploy()
(experimental) Deploys your app.
|
Task |
IntegrationTest.getDeployTask()
(experimental) Deploy the integration test and update the snapshot upon success.
|
Task |
CdkTasks.getDestroy()
(experimental) Destroys all the stacks.
|
Task |
IntegrationTest.getDestroyTask()
(experimental) Destroys a deployed stack.
|
Task |
CdkTasks.getDiff()
(experimental) Diff against production.
|
Task |
IntegrationTest.getSnapshotTask()
(experimental) Just update snapshot (without deployment).
|
Task |
CdkTasks.getSynth()
(experimental) Synthesizes your app.
|
Task |
CdkTasks.getWatch()
(experimental) Watch task.
|
Task |
IntegrationTest.getWatchTask()
(experimental) The watch task.
|
| Modifier and Type | Method and Description |
|---|---|
Task |
TaskWorkflowOptions.getTask()
(experimental) The main task to be executed.
|
Task |
TaskWorkflowOptions.Jsii$Proxy.getTask() |
| Modifier and Type | Method and Description |
|---|---|
TaskWorkflowOptions.Builder |
TaskWorkflowOptions.Builder.task(Task task)
Sets the value of
TaskWorkflowOptions.getTask() |
TaskWorkflow.Builder |
TaskWorkflow.Builder.task(Task task)
(experimental) The main task to be executed.
|
| Modifier and Type | Method and Description |
|---|---|
Task |
Bundler.getBundleTask()
(experimental) Gets or creates the singleton "bundle" task of the project.
|
Task |
Bundle.getBundleTask()
(experimental) The task that produces this bundle.
|
Task |
Bundle.Jsii$Proxy.getBundleTask() |
default Task |
Bundle.getWatchTask()
(experimental) The "watch" task for this bundle.
|
Task |
Bundle.Jsii$Proxy.getWatchTask() |
| Modifier and Type | Method and Description |
|---|---|
Bundle.Builder |
Bundle.Builder.bundleTask(Task bundleTask)
Sets the value of
Bundle.getBundleTask() |
String |
NodeProject.runTaskCommand(Task task)
(experimental) Returns the shell command to execute in order to run a task.
|
Bundle.Builder |
Bundle.Builder.watchTask(Task watchTask)
Sets the value of
Bundle.getWatchTask() |
| Modifier and Type | Method and Description |
|---|---|
Task |
Poetry.getInstallTask()
(experimental) A task that installs and updates dependencies.
|
Task |
Pip.getInstallTask()
(experimental) A task that installs and updates dependencies.
|
Task |
IPythonDeps.getInstallTask()
(experimental) A task that installs and updates dependencies.
|
Task |
IPythonDeps.Jsii$Proxy.getInstallTask()
(experimental) A task that installs and updates dependencies.
|
default Task |
IPythonDeps.Jsii$Default.getInstallTask()
(experimental) A task that installs and updates dependencies.
|
Task |
Poetry.getPublishTask()
(experimental) A task that uploads the package to a package repository.
|
Task |
Setuptools.getPublishTask()
(experimental) A task that uploads the package to a package repository.
|
Task |
IPythonPackaging.getPublishTask()
(experimental) A task that uploads the package to a package repository.
|
Task |
IPythonPackaging.Jsii$Proxy.getPublishTask()
(experimental) A task that uploads the package to a package repository.
|
default Task |
IPythonPackaging.Jsii$Default.getPublishTask()
(experimental) A task that uploads the package to a package repository.
|
Task |
Poetry.getPublishTestTask()
(experimental) A task that uploads the package to the Test PyPI repository.
|
Task |
Setuptools.getPublishTestTask()
(experimental) A task that uploads the package to the Test PyPI repository.
|
| Modifier and Type | Method and Description |
|---|---|
Task |
ReleaseOptions.getTask()
(experimental) The task to execute in order to create the release artifacts.
|
Task |
ReleaseOptions.Jsii$Proxy.getTask() |
Task |
Publisher.publishToGit(GitPublishOptions options)
(experimental) Publish to git.
|
| Modifier and Type | Method and Description |
|---|---|
ReleaseOptions.Builder |
ReleaseOptions.Builder.task(Task task)
Sets the value of
ReleaseOptions.getTask() |
Release.Builder |
Release.Builder.task(Task task)
(experimental) The task to execute in order to create the release artifacts.
|
| Modifier and Type | Method and Description |
|---|---|
Task |
TypeScriptProject.getWatchTask()
(experimental) The "watch" task.
|
| Modifier and Type | Method and Description |
|---|---|
List<Task> |
DevContainerOptions.Jsii$Proxy.getTasks() |
| Modifier and Type | Method and Description |
|---|---|
void |
DevContainer.addTasks(Task... tasks)
(experimental) Adds tasks to run when the container starts.
|
| Modifier and Type | Method and Description |
|---|---|
DevContainer.Builder |
DevContainer.Builder.tasks(List<? extends Task> tasks)
(experimental) An array of tasks that should be run when the container starts.
|
DevContainerOptions.Builder |
DevContainerOptions.Builder.tasks(List<? extends Task> tasks)
Sets the value of
DevEnvironmentOptions.getTasks() |
Copyright © 2021. All rights reserved.