3.0.x
in the latest
tag. This is our first official release of v3 under the latest tag, and we recommend anyone still using packages in the beta
tag to upgrade to the latest version. This guide will help you upgrade your project to the latest version of Trigger.dev.
The major changes in this release are a new build system, which is more flexible and powerful than the previous build system. We’ve also made some changes to the trigger.dev
CLI to improve the developer experience.
The main features of the new build sytem are:
- Bundling by default: All dependencies are bundled by default, so you no longer need to specify which dependencies to bundle. This solves a whole bunch of issues related to monorepos.
- Build extensions: A new way to extend the build process with custom logic. This is a more flexible and powerful way to extend the build process compared to the old system. (including custom esbuild plugin support)
- Improved configuration: We’ve migrated to using c12 to power our configuration system.
- Improved error handling: We now do a much better job of reporting of any errors that happen during the indexing process by loading your trigger task files dynamically.
- Improved cold start times: Previously, we would load all your trigger task files at once, which could lead to long cold start times. Now we load your trigger task files dynamically, which should improve cold start times.
Update packages
To use the new build system, you have to update to use our latest packages. Update the@trigger.dev/sdk
package in your package.json:
trigger.dev
CLI to use the latest release. If you run the CLI via npx
you can update to the latest release like so:
trigger.dev
CLI to your devDependencies
, then you should update the version to point to the latest release:
npm i
or the equivalent with your preferred package manager.
If you deploy using GitHub actions, make sure you update the version there too.
Update your trigger.config.ts
The new build system does not effect your trigger task files at all, so those can remain unchanged. However, you may need to make changes to your trigger.config.ts
file.
defineConfig
You should now import the defineConfig
function from @trigger.dev/sdk/v3
and export the config as the default export:
Deprecated: dependenciesToBundle
The new build system will bundle all dependencies by default, so dependenciesToBundle
no longer makes any sense and can be removed.
Externals
Now that all dependencies are bundled, there are some situations where bundling a dependency doesn’t work, and needs to be made external (e.g. when a dependency includes a native module). You can now specify these dependencies as build externals in thedefineConfig
function:
external
is an array of strings, where each string is the name of a dependency that should be made external. Glob expressions are also supported and use the minimatch matcher.
additionalFiles
TheadditionalFiles
option has been moved to our new build extension system.
To use build extensions, you’ll need to add the @trigger.dev/build
package to your devDependencies
:
additionalFiles
build extension and use it in your trigger.config.ts
file:
additionalPackages
TheadditionalPackages
option has been moved to our new build extension system.
To use build extensions, you’ll need to add the @trigger.dev/build
package to your devDependencies
:
additionalPackages
build extension and use it in your trigger.config.ts
file:
resolveEnvVars
TheresolveEnvVars
export has been moved to our new build extension system.
To use build extensions, you’ll need to add the @trigger.dev/build
package to your devDependencies
:
syncEnvVars
build extension and use it in your trigger.config.ts
file:
syncEnvVars
callback function works very similarly to the deprecated resolveEnvVars
handler, but now instead of returning an object with a variables
key that contains the environment variables, you return an object with the environment variables directly (see the example above).
One other difference is now params.env
only contains the environment variables that are set in the Trigger.dev environment variables, and not the environment variables from the process. If you want to access the environment variables from the process, you can use process.env
.
See the syncEnvVars documentation for more information.
emitDecoratorMetadata
If you make use of decorators in your code, and have enabled theemitDecoratorMetadata
tsconfig compiler option, you’ll need to enable this in the new build sytem using the emitDecoratorMetadata
build extension:
Prisma
We’ve created a build extension to support using Prisma in your Trigger.dev tasks. To use this extension, you’ll need to add the@trigger.dev/build
package to your devDependencies
:
prismaExtension
build extension and use it in your trigger.config.ts
file, passing in the path to your Prisma schema file:
This does not have any effect when running the
dev
command, so you’ll need to make sure you
generate your client locally first.migrate
option:
generator
statements defined in your schema file, you can pass in the clientGenerator
option to specify the prisma-client-js
generator, which will prevent other generators from being generated:
audioWaveform
Previously, we installed Audio Waveform in the build image. That’s been moved to a build extension:esbuild plugins
You can now add esbuild plugins to customize the build process using theesbuildPlugin
build extension. The example below shows how to automatically upload sourcemaps to Sentry using their esbuild plugin:
Changes to the trigger.dev
CLI
No more typechecking during deploy
We no longer run typechecking during the deploy command. This was causing issues with some projects, and we found that it wasn’t necessary to run typechecking during the deploy command. If you want to run typechecking before deploying to Trigger.dev, you can run thetsc
command before running the deploy
command.
tsc
command before deploying to Trigger.dev.
deploy --dry-run
You can now inspect the build output of your project without actually deploying it to Trigger.dev by using the --dry-run
flag:
--env-file
You can now pass the path to your local .env
file using the --env-file
flag during dev
and deploy
commands:
.env
file works slightly differently in dev
vs deploy
:
- In
dev
, the.env
file is loaded into the CLI’sprocess.env
and also into the environment variables of the Trigger.dev environment. - In
deploy
, the.env
file is loaded into the CLI’sprocess.env
but not into the environment variables of the Trigger.dev environment. If you want to sync the environment variables from the.env
file to the Trigger.dev environment variables, you can use thesyncEnvVars
build extension.
dev debugging in VS Code
Debugging your tasks code indev
is now supported via VS Code, without having to pass in any additional flags. Create a launch configuration in .vscode/launch.json
:
launch.json
Trigger.dev: Dev
configuration in the debug panel, and set breakpoints in your tasks code.
TRIGGER_ACCESS_TOKEN in dev
You can now authenticate thedev
command using the TRIGGER_ACCESS_TOKEN
environment variable. Previously this was only supported in the deploy
command.
Better deploy support for self-hosters
You can now specify a custom registry and namespace when deploying via a self-hosted instance of Trigger.dev:proj_rrkpdguyagvsoktglnod
)
Docker Hub will automatically create a repository the first time you push, which is public by
default. If you want to keep these images private, make sure you create the repository before you
first run the
deploy
commandKnown issues
- Path aliases are not yet support in your
trigger.config.ts
file. To workaround this issue you’ll need to rewrite path aliases to their relative paths. (See this and this) for more info. *.test.ts
and.spec.ts
files inside the trigger dirs will be bundled and could cause issues. You’ll need to move these files outside of the trigger dirs to avoid this issue.