Skip to content

Commit 95eec5d

Browse files
committed
additional packages version pinning
1 parent e8ae33c commit 95eec5d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/config/extensions/additionalPackages.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ export default defineConfig({
1919
});
2020
```
2121

22-
This allows you to include additional packages in the build that are not automatically included via imports. This is useful if you want to install a package that includes a CLI tool that you want to invoke in your tasks via `exec`. We will try to automatically resolve the version of the package but you can specify the version by using the `@` symbol:
22+
This allows you to include additional packages in the build that are not automatically included via imports. This is useful if you want to install a package that includes a CLI tool that you want to invoke in your tasks via `exec`. We will try to automatically resolve the version of the package but you can specify the version by using the `@` symbol.
23+
24+
If you omit the version, the build may use a cached or older resolution. For reproducible builds, pin the exact version (e.g. `wrangler@1.19.0`).
2325

2426
```ts
2527
import { defineConfig } from "@trigger.dev/sdk";

0 commit comments

Comments
 (0)