You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You will also need to update your usage of the `trigger.dev` CLI to use the preview release. If you run the CLI via `npx` you can update to the preview release like so:
@@ -28,13 +28,13 @@ You will also need to update your usage of the `trigger.dev` CLI to use the prev
28
28
npx trigger.dev@beta dev
29
29
30
30
# using the preview release
31
-
npx trigger.dev@0.0.0-prerelease-20240825150620 dev --skip-update-check
31
+
npx trigger.dev@0.0.0-prerelease-20240905123715 dev
32
32
```
33
33
34
34
If you've added the `trigger.dev` CLI to your `devDependencies`, then you should update the version to point to the preview release:
35
35
36
36
```json
37
-
"trigger.dev": "0.0.0-prerelease-20240825150620"
37
+
"trigger.dev": "0.0.0-prerelease-20240905123715"
38
38
```
39
39
40
40
Once you do that make sure you re-install your dependencies using `npm i` or the equivalent with your preferred package manager.
@@ -85,7 +85,7 @@ The `additionalFiles` option has been moved to our new build extension system.
85
85
To use build extensions, you'll need to add the `@trigger.dev/build` package to your `devDependencies`:
Now you can import the `syncEnvVars` build extension and use it in your `trigger.config.ts` file:
@@ -183,7 +183,7 @@ export default defineConfig({
183
183
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`:
Then you can import the `prismaExtension` build extension and use it in your `trigger.config.ts` file, passing in the path to your Prisma schema file:
@@ -324,7 +324,7 @@ export default defineConfig({
324
324
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 the `tsc` command before running the `deploy` command.
This will save the build output and print the path to the build output directory. If you face any issues with deploying, please include the build output in your issue report.
@@ -358,8 +358,8 @@ This will save the build output and print the path to the build output directory
358
358
You can now pass the path to your local `.env` file using the `--env-file` flag during `dev` and `deploy` commands:
359
359
360
360
```sh
361
-
npx trigger.dev@0.0.0-prerelease-20240825150620 dev --env-file ../../.env
@@ -396,7 +396,7 @@ Then you can start debugging your tasks code by selecting the `Trigger.dev: Dev`
396
396
You can now authenticate the `dev` command using the `TRIGGER_ACCESS_TOKEN` environment variable. Previously this was only supported in the `deploy` command.
397
397
398
398
```sh
399
-
TRIGGER_ACCESS_TOKEN=<your access token> npx trigger.dev@0.0.0-prerelease-20240825150620 dev
399
+
TRIGGER_ACCESS_TOKEN=<your access token> npx trigger.dev@0.0.0-prerelease-20240905123715 dev
0 commit comments