@turbo/types 2.2.4-canary.2 → 2.2.4-canary.4
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
CHANGED
package/schemas/schema.json
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"items": {
|
|
34
34
|
"type": "string"
|
|
35
35
|
},
|
|
36
|
-
"description": "A list of globs to include in the set of implicit global hash dependencies.\n\nThe contents of these files will be included in the global hashing algorithm and affect the hashes of all tasks.\n\nThis is useful for busting the cache based on:\n\n- .env files (not in Git)\n\n- any root level file that impacts package tasks that are not represented in the traditional dependency graph (e.g. a root tsconfig.json, jest.config.
|
|
36
|
+
"description": "A list of globs to include in the set of implicit global hash dependencies.\n\nThe contents of these files will be included in the global hashing algorithm and affect the hashes of all tasks.\n\nThis is useful for busting the cache based on:\n\n- .env files (not in Git)\n\n- any root level file that impacts package tasks that are not represented in the traditional dependency graph (e.g. a root tsconfig.json, jest.config.ts, .eslintrc, etc.)\n\nDocumentation: https://turbo.build/repo/docs/reference/configuration#globaldependencies",
|
|
37
37
|
"default": []
|
|
38
38
|
},
|
|
39
39
|
"globalEnv": {
|
package/schemas/schema.v1.json
CHANGED
|
@@ -170,7 +170,7 @@
|
|
|
170
170
|
"items": {
|
|
171
171
|
"type": "string"
|
|
172
172
|
},
|
|
173
|
-
"description": "A list of globs to include in the set of implicit global hash dependencies.\n\nThe contents of these files will be included in the global hashing algorithm and affect the hashes of all tasks.\n\nThis is useful for busting the cache based on:\n\n- .env files (not in Git)\n\n- any root level file that impacts package tasks that are not represented in the traditional dependency graph (e.g. a root tsconfig.json, jest.config.
|
|
173
|
+
"description": "A list of globs to include in the set of implicit global hash dependencies.\n\nThe contents of these files will be included in the global hashing algorithm and affect the hashes of all tasks.\n\nThis is useful for busting the cache based on:\n\n- .env files (not in Git)\n\n- any root level file that impacts package tasks that are not represented in the traditional dependency graph (e.g. a root tsconfig.json, jest.config.ts, .eslintrc, etc.)\n\nDocumentation: https://turbo.build/repo/docs/reference/configuration#globaldependencies",
|
|
174
174
|
"default": []
|
|
175
175
|
},
|
|
176
176
|
"globalEnv": {
|
package/schemas/schema.v2.json
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"items": {
|
|
34
34
|
"type": "string"
|
|
35
35
|
},
|
|
36
|
-
"description": "A list of globs to include in the set of implicit global hash dependencies.\n\nThe contents of these files will be included in the global hashing algorithm and affect the hashes of all tasks.\n\nThis is useful for busting the cache based on:\n\n- .env files (not in Git)\n\n- any root level file that impacts package tasks that are not represented in the traditional dependency graph (e.g. a root tsconfig.json, jest.config.
|
|
36
|
+
"description": "A list of globs to include in the set of implicit global hash dependencies.\n\nThe contents of these files will be included in the global hashing algorithm and affect the hashes of all tasks.\n\nThis is useful for busting the cache based on:\n\n- .env files (not in Git)\n\n- any root level file that impacts package tasks that are not represented in the traditional dependency graph (e.g. a root tsconfig.json, jest.config.ts, .eslintrc, etc.)\n\nDocumentation: https://turbo.build/repo/docs/reference/configuration#globaldependencies",
|
|
37
37
|
"default": []
|
|
38
38
|
},
|
|
39
39
|
"globalEnv": {
|
package/src/types/config-v1.ts
CHANGED
|
@@ -221,7 +221,7 @@ export interface RootSchemaV1 extends BaseSchemaV1 {
|
|
|
221
221
|
*
|
|
222
222
|
* - any root level file that impacts package tasks
|
|
223
223
|
* that are not represented in the traditional dependency graph
|
|
224
|
-
* (e.g. a root tsconfig.json, jest.config.
|
|
224
|
+
* (e.g. a root tsconfig.json, jest.config.ts, .eslintrc, etc.)
|
|
225
225
|
*
|
|
226
226
|
* Documentation: https://turbo.build/repo/docs/reference/configuration#globaldependencies
|
|
227
227
|
*
|
package/src/types/config-v2.ts
CHANGED
|
@@ -67,7 +67,7 @@ export interface RootSchema extends BaseSchema {
|
|
|
67
67
|
*
|
|
68
68
|
* - any root level file that impacts package tasks
|
|
69
69
|
* that are not represented in the traditional dependency graph
|
|
70
|
-
* (e.g. a root tsconfig.json, jest.config.
|
|
70
|
+
* (e.g. a root tsconfig.json, jest.config.ts, .eslintrc, etc.)
|
|
71
71
|
*
|
|
72
72
|
* Documentation: https://turbo.build/repo/docs/reference/configuration#globaldependencies
|
|
73
73
|
*
|