@turbo/types 2.0.4 → 2.0.5-canary.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/types/config.ts +0 -23
package/package.json
CHANGED
package/src/types/config.ts
CHANGED
|
@@ -90,17 +90,6 @@ export interface RootSchema extends BaseSchema {
|
|
|
90
90
|
*/
|
|
91
91
|
globalEnv?: Array<EnvWildcard>;
|
|
92
92
|
|
|
93
|
-
/**
|
|
94
|
-
* An allowlist of environment variables that should be made to all tasks, but
|
|
95
|
-
* should not contribute to the task's cache key, e.g. `AWS_SECRET_KEY`.
|
|
96
|
-
*
|
|
97
|
-
* Documentation: https://turbo.build/repo/docs/reference/configuration#globalpassthroughenv
|
|
98
|
-
*
|
|
99
|
-
* @defaultValue null
|
|
100
|
-
* @deprecated use `globalPassThroughEnv` instead
|
|
101
|
-
*/
|
|
102
|
-
experimentalGlobalPassThroughEnv?: null | Array<string>;
|
|
103
|
-
|
|
104
93
|
/**
|
|
105
94
|
* An allowlist of environment variables that should be made to all tasks, but
|
|
106
95
|
* should not contribute to the task's cache key, e.g. `AWS_SECRET_KEY`.
|
|
@@ -177,18 +166,6 @@ export interface Pipeline {
|
|
|
177
166
|
*/
|
|
178
167
|
env?: Array<EnvWildcard>;
|
|
179
168
|
|
|
180
|
-
/**
|
|
181
|
-
* An allowlist of environment variables that should be made available in this
|
|
182
|
-
* task's environment, but should not contribute to the task's cache key,
|
|
183
|
-
* e.g. `AWS_SECRET_KEY`.
|
|
184
|
-
*
|
|
185
|
-
* Documentation: https://turbo.build/repo/docs/reference/configuration#passthroughenv
|
|
186
|
-
*
|
|
187
|
-
* @defaultValue null
|
|
188
|
-
* @deprecated use `passThroughEnv` instead
|
|
189
|
-
*/
|
|
190
|
-
experimentalPassThroughEnv?: null | Array<string>;
|
|
191
|
-
|
|
192
169
|
/**
|
|
193
170
|
* An allowlist of environment variables that should be made available in this
|
|
194
171
|
* task's environment, but should not contribute to the task's cache key,
|