Skip to content

Commit a4c9a3f

Browse files
committed
Update deprecation notice doc links
1 parent f8bd464 commit a4c9a3f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/cli-v3/src/config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ function validateConfig(config: TriggerConfig, warn = true) {
228228
if (config.additionalFiles && config.additionalFiles.length > 0) {
229229
warn &&
230230
prettyWarning(
231-
`The "additionalFiles" option is deprecated and will be removed. Use the "additionalFiles" build extension instead. See https://trigger.dev/docs/guides/new-build-system-preview#additionalfiles for more information.`
231+
`The "additionalFiles" option is deprecated and will be removed. Use the "additionalFiles" build extension instead. See https://trigger.dev/docs/config/config-file#additionalfiles for more information.`
232232
);
233233

234234
config.build ??= {};
@@ -239,7 +239,7 @@ function validateConfig(config: TriggerConfig, warn = true) {
239239
if (config.additionalPackages && config.additionalPackages.length > 0) {
240240
warn &&
241241
prettyWarning(
242-
`The "additionalPackages" option is deprecated and will be removed. Use the "additionalPackages" build extension instead. See https://trigger.dev/docs/guides/new-build-system-preview#additionalpackages for more information.`
242+
`The "additionalPackages" option is deprecated and will be removed. Use the "additionalPackages" build extension instead. See https://trigger.dev/docs/config/config-file#additionalpackages for more information.`
243243
);
244244

245245
config.build ??= {};
@@ -275,7 +275,7 @@ function validateConfig(config: TriggerConfig, warn = true) {
275275
if ("resolveEnvVars" in config && typeof config.resolveEnvVars === "function") {
276276
warn &&
277277
prettyWarning(
278-
`The "resolveEnvVars" option is deprecated and will be removed. Use the "syncEnvVars" build extension instead. See https://trigger.dev/docs/guides/new-build-system-preview#resolveenvvars for more information.`
278+
`The "resolveEnvVars" option is deprecated and will be removed. Use the "syncEnvVars" build extension instead. See https://trigger.dev/docs/config/config-file#syncenvvars for more information.`
279279
);
280280

281281
const resolveEnvVarsFn = config.resolveEnvVars as ResolveEnvironmentVariablesFunction;

0 commit comments

Comments
 (0)