@rushstack/rush-http-build-cache-plugin 5.129.5 → 5.129.7

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.
Files changed (31) hide show
  1. package/.rush/temp/chunked-rush-logs/rush-http-build-cache-plugin._phase_build.chunks.jsonl +2 -2
  2. package/.rush/temp/chunked-rush-logs/rush-http-build-cache-plugin._phase_test.chunks.jsonl +3 -3
  3. package/.rush/temp/operation/_phase_build/all.log +2 -2
  4. package/.rush/temp/operation/_phase_build/log-chunks.jsonl +2 -2
  5. package/.rush/temp/operation/_phase_build/state.json +1 -1
  6. package/.rush/temp/operation/_phase_test/all.log +3 -3
  7. package/.rush/temp/operation/_phase_test/log-chunks.jsonl +3 -3
  8. package/.rush/temp/operation/_phase_test/state.json +1 -1
  9. package/.rush/temp/{rushstack+rush-http-build-cache-plugin-_phase_build-dab0e4b024fd0c4a2c46adc330f7c4bc588068f9.tar.log → rushstack+rush-http-build-cache-plugin-_phase_build-47fd4c75782eab8f77782e61e6aec077d375eeab.tar.log} +2 -2
  10. package/.rush/temp/{rushstack+rush-http-build-cache-plugin-_phase_test-7336991e6d973311cac265dd63de5d04eac5536d.tar.log → rushstack+rush-http-build-cache-plugin-_phase_test-42fee26f781b7b00bba21df9367447c70f689859.tar.log} +2 -2
  11. package/coverage/HttpBuildCacheProvider.ts.html +1 -1
  12. package/coverage/RushHttpBuildCachePlugin.ts.html +1 -1
  13. package/coverage/cobertura-coverage.xml +1 -1
  14. package/coverage/index.html +1 -1
  15. package/coverage/index.ts.html +1 -1
  16. package/coverage/junit.xml +4 -4
  17. package/package.json +7 -7
  18. package/rush-logs/rush-http-build-cache-plugin._phase_build.cache.log +1 -1
  19. package/rush-logs/rush-http-build-cache-plugin._phase_build.log +2 -2
  20. package/rush-logs/rush-http-build-cache-plugin._phase_test.cache.log +1 -1
  21. package/rush-logs/rush-http-build-cache-plugin._phase_test.log +3 -3
  22. package/temp/build/typescript/ts_l9Fw4VUO.json +1 -1
  23. package/temp/test/jest/haste-map-8bff56e236187dbf28a94cdea7ee2158-1f8f3a8b20228094c245723445dd2c9a-e95bfd62c357a87bf3c5f47c6c3a2910 +0 -0
  24. package/temp/test/jest/jest-transform-cache-8bff56e236187dbf28a94cdea7ee2158-79ef2876fae7ca75eedb2aa53dc48338/44/mappingTable_44aa0b561b514c9cc5675d654100bad6 +2 -0
  25. package/temp/test/jest/jest-transform-cache-8bff56e236187dbf28a94cdea7ee2158-79ef2876fae7ca75eedb2aa53dc48338/72/jsonschemadraft04_724448421d4440ec5ba8a8d24738974e +139 -0
  26. package/temp/test/jest/jest-transform-cache-8bff56e236187dbf28a94cdea7ee2158-79ef2876fae7ca75eedb2aa53dc48338/76/core_7628c0579525dd7eb201283289b310cf +159 -0
  27. package/temp/test/jest/jest-transform-cache-8bff56e236187dbf28a94cdea7ee2158-79ef2876fae7ca75eedb2aa53dc48338/89/core_895f460b80f8443c45ff275482471c2e +161 -0
  28. package/temp/test/jest/jest-transform-cache-8bff56e236187dbf28a94cdea7ee2158-79ef2876fae7ca75eedb2aa53dc48338/8a/jsonschemadraft07_8a356f48daf83cc6135800e35f679739 +152 -0
  29. package/temp/test/jest/jest-transform-cache-8bff56e236187dbf28a94cdea7ee2158-79ef2876fae7ca75eedb2aa53dc48338/91/data_91b9054552667ec4d71dc8c801756255 +14 -0
  30. package/temp/test/jest/perf-cache-8bff56e236187dbf28a94cdea7ee2158-da39a3ee5e6b4b0d3255bfef95601890 +1 -1
  31. package/temp/test/jest/jest-transform-cache-8bff56e236187dbf28a94cdea7ee2158-79ef2876fae7ca75eedb2aa53dc48338/34/package_34492210ad7713fdf42b0294bc0f181b +0 -35
@@ -0,0 +1,139 @@
1
+ d6b898325003c01017b404b4645df6fa
2
+ {
3
+ "id": "http://json-schema.org/draft-04/schema#",
4
+ "$schema": "http://json-schema.org/draft-04/schema#",
5
+ "description": "Core schema meta-schema",
6
+ "definitions": {
7
+ "schemaArray": {
8
+ "type": "array",
9
+ "minItems": 1,
10
+ "items": {"$ref": "#"}
11
+ },
12
+ "positiveInteger": {
13
+ "type": "integer",
14
+ "minimum": 0
15
+ },
16
+ "positiveIntegerDefault0": {
17
+ "allOf": [{"$ref": "#/definitions/positiveInteger"}, {"default": 0}]
18
+ },
19
+ "simpleTypes": {
20
+ "enum": ["array", "boolean", "integer", "null", "number", "object", "string"]
21
+ },
22
+ "stringArray": {
23
+ "type": "array",
24
+ "items": {"type": "string"},
25
+ "minItems": 1,
26
+ "uniqueItems": true
27
+ }
28
+ },
29
+ "type": "object",
30
+ "properties": {
31
+ "id": {
32
+ "type": "string",
33
+ "format": "uri"
34
+ },
35
+ "$schema": {
36
+ "type": "string",
37
+ "format": "uri"
38
+ },
39
+ "title": {
40
+ "type": "string"
41
+ },
42
+ "description": {
43
+ "type": "string"
44
+ },
45
+ "default": {},
46
+ "multipleOf": {
47
+ "type": "number",
48
+ "minimum": 0,
49
+ "exclusiveMinimum": true
50
+ },
51
+ "maximum": {
52
+ "type": "number"
53
+ },
54
+ "exclusiveMaximum": {
55
+ "type": "boolean",
56
+ "default": false
57
+ },
58
+ "minimum": {
59
+ "type": "number"
60
+ },
61
+ "exclusiveMinimum": {
62
+ "type": "boolean",
63
+ "default": false
64
+ },
65
+ "maxLength": {"$ref": "#/definitions/positiveInteger"},
66
+ "minLength": {"$ref": "#/definitions/positiveIntegerDefault0"},
67
+ "pattern": {
68
+ "type": "string",
69
+ "format": "regex"
70
+ },
71
+ "additionalItems": {
72
+ "anyOf": [{"type": "boolean"}, {"$ref": "#"}],
73
+ "default": {}
74
+ },
75
+ "items": {
76
+ "anyOf": [{"$ref": "#"}, {"$ref": "#/definitions/schemaArray"}],
77
+ "default": {}
78
+ },
79
+ "maxItems": {"$ref": "#/definitions/positiveInteger"},
80
+ "minItems": {"$ref": "#/definitions/positiveIntegerDefault0"},
81
+ "uniqueItems": {
82
+ "type": "boolean",
83
+ "default": false
84
+ },
85
+ "maxProperties": {"$ref": "#/definitions/positiveInteger"},
86
+ "minProperties": {"$ref": "#/definitions/positiveIntegerDefault0"},
87
+ "required": {"$ref": "#/definitions/stringArray"},
88
+ "additionalProperties": {
89
+ "anyOf": [{"type": "boolean"}, {"$ref": "#"}],
90
+ "default": {}
91
+ },
92
+ "definitions": {
93
+ "type": "object",
94
+ "additionalProperties": {"$ref": "#"},
95
+ "default": {}
96
+ },
97
+ "properties": {
98
+ "type": "object",
99
+ "additionalProperties": {"$ref": "#"},
100
+ "default": {}
101
+ },
102
+ "patternProperties": {
103
+ "type": "object",
104
+ "additionalProperties": {"$ref": "#"},
105
+ "default": {}
106
+ },
107
+ "dependencies": {
108
+ "type": "object",
109
+ "additionalProperties": {
110
+ "anyOf": [{"$ref": "#"}, {"$ref": "#/definitions/stringArray"}]
111
+ }
112
+ },
113
+ "enum": {
114
+ "type": "array",
115
+ "minItems": 1,
116
+ "uniqueItems": true
117
+ },
118
+ "type": {
119
+ "anyOf": [
120
+ {"$ref": "#/definitions/simpleTypes"},
121
+ {
122
+ "type": "array",
123
+ "items": {"$ref": "#/definitions/simpleTypes"},
124
+ "minItems": 1,
125
+ "uniqueItems": true
126
+ }
127
+ ]
128
+ },
129
+ "allOf": {"$ref": "#/definitions/schemaArray"},
130
+ "anyOf": {"$ref": "#/definitions/schemaArray"},
131
+ "oneOf": {"$ref": "#/definitions/schemaArray"},
132
+ "not": {"$ref": "#"}
133
+ },
134
+ "dependencies": {
135
+ "exclusiveMaximum": ["maximum"],
136
+ "exclusiveMinimum": ["minimum"]
137
+ },
138
+ "default": {}
139
+ }
@@ -0,0 +1,159 @@
1
+ 37c6f915ff10b52f46b1ae5c21e3f24d
2
+ {
3
+ "assert": true,
4
+ "node:assert": [">= 14.18 && < 15", ">= 16"],
5
+ "assert/strict": ">= 15",
6
+ "node:assert/strict": ">= 16",
7
+ "async_hooks": ">= 8",
8
+ "node:async_hooks": [">= 14.18 && < 15", ">= 16"],
9
+ "buffer_ieee754": ">= 0.5 && < 0.9.7",
10
+ "buffer": true,
11
+ "node:buffer": [">= 14.18 && < 15", ">= 16"],
12
+ "child_process": true,
13
+ "node:child_process": [">= 14.18 && < 15", ">= 16"],
14
+ "cluster": ">= 0.5",
15
+ "node:cluster": [">= 14.18 && < 15", ">= 16"],
16
+ "console": true,
17
+ "node:console": [">= 14.18 && < 15", ">= 16"],
18
+ "constants": true,
19
+ "node:constants": [">= 14.18 && < 15", ">= 16"],
20
+ "crypto": true,
21
+ "node:crypto": [">= 14.18 && < 15", ">= 16"],
22
+ "_debug_agent": ">= 1 && < 8",
23
+ "_debugger": "< 8",
24
+ "dgram": true,
25
+ "node:dgram": [">= 14.18 && < 15", ">= 16"],
26
+ "diagnostics_channel": [">= 14.17 && < 15", ">= 15.1"],
27
+ "node:diagnostics_channel": [">= 14.18 && < 15", ">= 16"],
28
+ "dns": true,
29
+ "node:dns": [">= 14.18 && < 15", ">= 16"],
30
+ "dns/promises": ">= 15",
31
+ "node:dns/promises": ">= 16",
32
+ "domain": ">= 0.7.12",
33
+ "node:domain": [">= 14.18 && < 15", ">= 16"],
34
+ "events": true,
35
+ "node:events": [">= 14.18 && < 15", ">= 16"],
36
+ "freelist": "< 6",
37
+ "fs": true,
38
+ "node:fs": [">= 14.18 && < 15", ">= 16"],
39
+ "fs/promises": [">= 10 && < 10.1", ">= 14"],
40
+ "node:fs/promises": [">= 14.18 && < 15", ">= 16"],
41
+ "_http_agent": ">= 0.11.1",
42
+ "node:_http_agent": [">= 14.18 && < 15", ">= 16"],
43
+ "_http_client": ">= 0.11.1",
44
+ "node:_http_client": [">= 14.18 && < 15", ">= 16"],
45
+ "_http_common": ">= 0.11.1",
46
+ "node:_http_common": [">= 14.18 && < 15", ">= 16"],
47
+ "_http_incoming": ">= 0.11.1",
48
+ "node:_http_incoming": [">= 14.18 && < 15", ">= 16"],
49
+ "_http_outgoing": ">= 0.11.1",
50
+ "node:_http_outgoing": [">= 14.18 && < 15", ">= 16"],
51
+ "_http_server": ">= 0.11.1",
52
+ "node:_http_server": [">= 14.18 && < 15", ">= 16"],
53
+ "http": true,
54
+ "node:http": [">= 14.18 && < 15", ">= 16"],
55
+ "http2": ">= 8.8",
56
+ "node:http2": [">= 14.18 && < 15", ">= 16"],
57
+ "https": true,
58
+ "node:https": [">= 14.18 && < 15", ">= 16"],
59
+ "inspector": ">= 8",
60
+ "node:inspector": [">= 14.18 && < 15", ">= 16"],
61
+ "inspector/promises": [">= 19"],
62
+ "node:inspector/promises": [">= 19"],
63
+ "_linklist": "< 8",
64
+ "module": true,
65
+ "node:module": [">= 14.18 && < 15", ">= 16"],
66
+ "net": true,
67
+ "node:net": [">= 14.18 && < 15", ">= 16"],
68
+ "node-inspect/lib/_inspect": ">= 7.6 && < 12",
69
+ "node-inspect/lib/internal/inspect_client": ">= 7.6 && < 12",
70
+ "node-inspect/lib/internal/inspect_repl": ">= 7.6 && < 12",
71
+ "os": true,
72
+ "node:os": [">= 14.18 && < 15", ">= 16"],
73
+ "path": true,
74
+ "node:path": [">= 14.18 && < 15", ">= 16"],
75
+ "path/posix": ">= 15.3",
76
+ "node:path/posix": ">= 16",
77
+ "path/win32": ">= 15.3",
78
+ "node:path/win32": ">= 16",
79
+ "perf_hooks": ">= 8.5",
80
+ "node:perf_hooks": [">= 14.18 && < 15", ">= 16"],
81
+ "process": ">= 1",
82
+ "node:process": [">= 14.18 && < 15", ">= 16"],
83
+ "punycode": ">= 0.5",
84
+ "node:punycode": [">= 14.18 && < 15", ">= 16"],
85
+ "querystring": true,
86
+ "node:querystring": [">= 14.18 && < 15", ">= 16"],
87
+ "readline": true,
88
+ "node:readline": [">= 14.18 && < 15", ">= 16"],
89
+ "readline/promises": ">= 17",
90
+ "node:readline/promises": ">= 17",
91
+ "repl": true,
92
+ "node:repl": [">= 14.18 && < 15", ">= 16"],
93
+ "smalloc": ">= 0.11.5 && < 3",
94
+ "_stream_duplex": ">= 0.9.4",
95
+ "node:_stream_duplex": [">= 14.18 && < 15", ">= 16"],
96
+ "_stream_transform": ">= 0.9.4",
97
+ "node:_stream_transform": [">= 14.18 && < 15", ">= 16"],
98
+ "_stream_wrap": ">= 1.4.1",
99
+ "node:_stream_wrap": [">= 14.18 && < 15", ">= 16"],
100
+ "_stream_passthrough": ">= 0.9.4",
101
+ "node:_stream_passthrough": [">= 14.18 && < 15", ">= 16"],
102
+ "_stream_readable": ">= 0.9.4",
103
+ "node:_stream_readable": [">= 14.18 && < 15", ">= 16"],
104
+ "_stream_writable": ">= 0.9.4",
105
+ "node:_stream_writable": [">= 14.18 && < 15", ">= 16"],
106
+ "stream": true,
107
+ "node:stream": [">= 14.18 && < 15", ">= 16"],
108
+ "stream/consumers": ">= 16.7",
109
+ "node:stream/consumers": ">= 16.7",
110
+ "stream/promises": ">= 15",
111
+ "node:stream/promises": ">= 16",
112
+ "stream/web": ">= 16.5",
113
+ "node:stream/web": ">= 16.5",
114
+ "string_decoder": true,
115
+ "node:string_decoder": [">= 14.18 && < 15", ">= 16"],
116
+ "sys": [">= 0.4 && < 0.7", ">= 0.8"],
117
+ "node:sys": [">= 14.18 && < 15", ">= 16"],
118
+ "test/reporters": ">= 19.9 && < 20.2",
119
+ "node:test/reporters": [">= 18.17 && < 19", ">= 19.9", ">= 20"],
120
+ "node:test": [">= 16.17 && < 17", ">= 18"],
121
+ "timers": true,
122
+ "node:timers": [">= 14.18 && < 15", ">= 16"],
123
+ "timers/promises": ">= 15",
124
+ "node:timers/promises": ">= 16",
125
+ "_tls_common": ">= 0.11.13",
126
+ "node:_tls_common": [">= 14.18 && < 15", ">= 16"],
127
+ "_tls_legacy": ">= 0.11.3 && < 10",
128
+ "_tls_wrap": ">= 0.11.3",
129
+ "node:_tls_wrap": [">= 14.18 && < 15", ">= 16"],
130
+ "tls": true,
131
+ "node:tls": [">= 14.18 && < 15", ">= 16"],
132
+ "trace_events": ">= 10",
133
+ "node:trace_events": [">= 14.18 && < 15", ">= 16"],
134
+ "tty": true,
135
+ "node:tty": [">= 14.18 && < 15", ">= 16"],
136
+ "url": true,
137
+ "node:url": [">= 14.18 && < 15", ">= 16"],
138
+ "util": true,
139
+ "node:util": [">= 14.18 && < 15", ">= 16"],
140
+ "util/types": ">= 15.3",
141
+ "node:util/types": ">= 16",
142
+ "v8/tools/arguments": ">= 10 && < 12",
143
+ "v8/tools/codemap": [">= 4.4 && < 5", ">= 5.2 && < 12"],
144
+ "v8/tools/consarray": [">= 4.4 && < 5", ">= 5.2 && < 12"],
145
+ "v8/tools/csvparser": [">= 4.4 && < 5", ">= 5.2 && < 12"],
146
+ "v8/tools/logreader": [">= 4.4 && < 5", ">= 5.2 && < 12"],
147
+ "v8/tools/profile_view": [">= 4.4 && < 5", ">= 5.2 && < 12"],
148
+ "v8/tools/splaytree": [">= 4.4 && < 5", ">= 5.2 && < 12"],
149
+ "v8": ">= 1",
150
+ "node:v8": [">= 14.18 && < 15", ">= 16"],
151
+ "vm": true,
152
+ "node:vm": [">= 14.18 && < 15", ">= 16"],
153
+ "wasi": [">= 13.4 && < 13.5", ">= 18.17 && < 19", ">= 20"],
154
+ "node:wasi": [">= 18.17 && < 19", ">= 20"],
155
+ "worker_threads": ">= 11.7",
156
+ "node:worker_threads": [">= 14.18 && < 15", ">= 16"],
157
+ "zlib": ">= 0.5",
158
+ "node:zlib": [">= 14.18 && < 15", ">= 16"]
159
+ }
@@ -0,0 +1,161 @@
1
+ 8d644924f0ddea8d1d56e57bfa74a21e
2
+ {
3
+ "assert": true,
4
+ "node:assert": [">= 14.18 && < 15", ">= 16"],
5
+ "assert/strict": ">= 15",
6
+ "node:assert/strict": ">= 16",
7
+ "async_hooks": ">= 8",
8
+ "node:async_hooks": [">= 14.18 && < 15", ">= 16"],
9
+ "buffer_ieee754": ">= 0.5 && < 0.9.7",
10
+ "buffer": true,
11
+ "node:buffer": [">= 14.18 && < 15", ">= 16"],
12
+ "child_process": true,
13
+ "node:child_process": [">= 14.18 && < 15", ">= 16"],
14
+ "cluster": ">= 0.5",
15
+ "node:cluster": [">= 14.18 && < 15", ">= 16"],
16
+ "console": true,
17
+ "node:console": [">= 14.18 && < 15", ">= 16"],
18
+ "constants": true,
19
+ "node:constants": [">= 14.18 && < 15", ">= 16"],
20
+ "crypto": true,
21
+ "node:crypto": [">= 14.18 && < 15", ">= 16"],
22
+ "_debug_agent": ">= 1 && < 8",
23
+ "_debugger": "< 8",
24
+ "dgram": true,
25
+ "node:dgram": [">= 14.18 && < 15", ">= 16"],
26
+ "diagnostics_channel": [">= 14.17 && < 15", ">= 15.1"],
27
+ "node:diagnostics_channel": [">= 14.18 && < 15", ">= 16"],
28
+ "dns": true,
29
+ "node:dns": [">= 14.18 && < 15", ">= 16"],
30
+ "dns/promises": ">= 15",
31
+ "node:dns/promises": ">= 16",
32
+ "domain": ">= 0.7.12",
33
+ "node:domain": [">= 14.18 && < 15", ">= 16"],
34
+ "events": true,
35
+ "node:events": [">= 14.18 && < 15", ">= 16"],
36
+ "freelist": "< 6",
37
+ "fs": true,
38
+ "node:fs": [">= 14.18 && < 15", ">= 16"],
39
+ "fs/promises": [">= 10 && < 10.1", ">= 14"],
40
+ "node:fs/promises": [">= 14.18 && < 15", ">= 16"],
41
+ "_http_agent": ">= 0.11.1",
42
+ "node:_http_agent": [">= 14.18 && < 15", ">= 16"],
43
+ "_http_client": ">= 0.11.1",
44
+ "node:_http_client": [">= 14.18 && < 15", ">= 16"],
45
+ "_http_common": ">= 0.11.1",
46
+ "node:_http_common": [">= 14.18 && < 15", ">= 16"],
47
+ "_http_incoming": ">= 0.11.1",
48
+ "node:_http_incoming": [">= 14.18 && < 15", ">= 16"],
49
+ "_http_outgoing": ">= 0.11.1",
50
+ "node:_http_outgoing": [">= 14.18 && < 15", ">= 16"],
51
+ "_http_server": ">= 0.11.1",
52
+ "node:_http_server": [">= 14.18 && < 15", ">= 16"],
53
+ "http": true,
54
+ "node:http": [">= 14.18 && < 15", ">= 16"],
55
+ "http2": ">= 8.8",
56
+ "node:http2": [">= 14.18 && < 15", ">= 16"],
57
+ "https": true,
58
+ "node:https": [">= 14.18 && < 15", ">= 16"],
59
+ "inspector": ">= 8",
60
+ "node:inspector": [">= 14.18 && < 15", ">= 16"],
61
+ "inspector/promises": [">= 19"],
62
+ "node:inspector/promises": [">= 19"],
63
+ "_linklist": "< 8",
64
+ "module": true,
65
+ "node:module": [">= 14.18 && < 15", ">= 16"],
66
+ "net": true,
67
+ "node:net": [">= 14.18 && < 15", ">= 16"],
68
+ "node-inspect/lib/_inspect": ">= 7.6 && < 12",
69
+ "node-inspect/lib/internal/inspect_client": ">= 7.6 && < 12",
70
+ "node-inspect/lib/internal/inspect_repl": ">= 7.6 && < 12",
71
+ "os": true,
72
+ "node:os": [">= 14.18 && < 15", ">= 16"],
73
+ "path": true,
74
+ "node:path": [">= 14.18 && < 15", ">= 16"],
75
+ "path/posix": ">= 15.3",
76
+ "node:path/posix": ">= 16",
77
+ "path/win32": ">= 15.3",
78
+ "node:path/win32": ">= 16",
79
+ "perf_hooks": ">= 8.5",
80
+ "node:perf_hooks": [">= 14.18 && < 15", ">= 16"],
81
+ "process": ">= 1",
82
+ "node:process": [">= 14.18 && < 15", ">= 16"],
83
+ "punycode": ">= 0.5",
84
+ "node:punycode": [">= 14.18 && < 15", ">= 16"],
85
+ "querystring": true,
86
+ "node:querystring": [">= 14.18 && < 15", ">= 16"],
87
+ "readline": true,
88
+ "node:readline": [">= 14.18 && < 15", ">= 16"],
89
+ "readline/promises": ">= 17",
90
+ "node:readline/promises": ">= 17",
91
+ "repl": true,
92
+ "node:repl": [">= 14.18 && < 15", ">= 16"],
93
+ "smalloc": ">= 0.11.5 && < 3",
94
+ "_stream_duplex": ">= 0.9.4",
95
+ "node:_stream_duplex": [">= 14.18 && < 15", ">= 16"],
96
+ "_stream_transform": ">= 0.9.4",
97
+ "node:_stream_transform": [">= 14.18 && < 15", ">= 16"],
98
+ "_stream_wrap": ">= 1.4.1",
99
+ "node:_stream_wrap": [">= 14.18 && < 15", ">= 16"],
100
+ "_stream_passthrough": ">= 0.9.4",
101
+ "node:_stream_passthrough": [">= 14.18 && < 15", ">= 16"],
102
+ "_stream_readable": ">= 0.9.4",
103
+ "node:_stream_readable": [">= 14.18 && < 15", ">= 16"],
104
+ "_stream_writable": ">= 0.9.4",
105
+ "node:_stream_writable": [">= 14.18 && < 15", ">= 16"],
106
+ "stream": true,
107
+ "node:stream": [">= 14.18 && < 15", ">= 16"],
108
+ "stream/consumers": ">= 16.7",
109
+ "node:stream/consumers": ">= 16.7",
110
+ "stream/promises": ">= 15",
111
+ "node:stream/promises": ">= 16",
112
+ "stream/web": ">= 16.5",
113
+ "node:stream/web": ">= 16.5",
114
+ "string_decoder": true,
115
+ "node:string_decoder": [">= 14.18 && < 15", ">= 16"],
116
+ "sys": [">= 0.4 && < 0.7", ">= 0.8"],
117
+ "node:sys": [">= 14.18 && < 15", ">= 16"],
118
+ "test/reporters": ">= 19.9 && < 20.2",
119
+ "node:test/reporters": [">= 18.17 && < 19", ">= 19.9", ">= 20"],
120
+ "test/mock_loader": ">= 22.3",
121
+ "node:test/mock_loader": ">= 22.3",
122
+ "node:test": [">= 16.17 && < 17", ">= 18"],
123
+ "timers": true,
124
+ "node:timers": [">= 14.18 && < 15", ">= 16"],
125
+ "timers/promises": ">= 15",
126
+ "node:timers/promises": ">= 16",
127
+ "_tls_common": ">= 0.11.13",
128
+ "node:_tls_common": [">= 14.18 && < 15", ">= 16"],
129
+ "_tls_legacy": ">= 0.11.3 && < 10",
130
+ "_tls_wrap": ">= 0.11.3",
131
+ "node:_tls_wrap": [">= 14.18 && < 15", ">= 16"],
132
+ "tls": true,
133
+ "node:tls": [">= 14.18 && < 15", ">= 16"],
134
+ "trace_events": ">= 10",
135
+ "node:trace_events": [">= 14.18 && < 15", ">= 16"],
136
+ "tty": true,
137
+ "node:tty": [">= 14.18 && < 15", ">= 16"],
138
+ "url": true,
139
+ "node:url": [">= 14.18 && < 15", ">= 16"],
140
+ "util": true,
141
+ "node:util": [">= 14.18 && < 15", ">= 16"],
142
+ "util/types": ">= 15.3",
143
+ "node:util/types": ">= 16",
144
+ "v8/tools/arguments": ">= 10 && < 12",
145
+ "v8/tools/codemap": [">= 4.4 && < 5", ">= 5.2 && < 12"],
146
+ "v8/tools/consarray": [">= 4.4 && < 5", ">= 5.2 && < 12"],
147
+ "v8/tools/csvparser": [">= 4.4 && < 5", ">= 5.2 && < 12"],
148
+ "v8/tools/logreader": [">= 4.4 && < 5", ">= 5.2 && < 12"],
149
+ "v8/tools/profile_view": [">= 4.4 && < 5", ">= 5.2 && < 12"],
150
+ "v8/tools/splaytree": [">= 4.4 && < 5", ">= 5.2 && < 12"],
151
+ "v8": ">= 1",
152
+ "node:v8": [">= 14.18 && < 15", ">= 16"],
153
+ "vm": true,
154
+ "node:vm": [">= 14.18 && < 15", ">= 16"],
155
+ "wasi": [">= 13.4 && < 13.5", ">= 18.17 && < 19", ">= 20"],
156
+ "node:wasi": [">= 18.17 && < 19", ">= 20"],
157
+ "worker_threads": ">= 11.7",
158
+ "node:worker_threads": [">= 14.18 && < 15", ">= 16"],
159
+ "zlib": ">= 0.5",
160
+ "node:zlib": [">= 14.18 && < 15", ">= 16"]
161
+ }
@@ -0,0 +1,152 @@
1
+ 434509fafa64733f0ed88a8bc3a3f11e
2
+ {
3
+ "$schema": "http://json-schema.org/draft-07/schema#",
4
+ "$id": "http://json-schema.org/draft-07/schema#",
5
+ "title": "Core schema meta-schema",
6
+ "definitions": {
7
+ "schemaArray": {
8
+ "type": "array",
9
+ "minItems": 1,
10
+ "items": {"$ref": "#"}
11
+ },
12
+ "nonNegativeInteger": {
13
+ "type": "integer",
14
+ "minimum": 0
15
+ },
16
+ "nonNegativeIntegerDefault0": {
17
+ "allOf": [{"$ref": "#/definitions/nonNegativeInteger"}, {"default": 0}]
18
+ },
19
+ "simpleTypes": {
20
+ "enum": ["array", "boolean", "integer", "null", "number", "object", "string"]
21
+ },
22
+ "stringArray": {
23
+ "type": "array",
24
+ "items": {"type": "string"},
25
+ "uniqueItems": true,
26
+ "default": []
27
+ }
28
+ },
29
+ "type": ["object", "boolean"],
30
+ "properties": {
31
+ "$id": {
32
+ "type": "string",
33
+ "format": "uri-reference"
34
+ },
35
+ "$schema": {
36
+ "type": "string",
37
+ "format": "uri"
38
+ },
39
+ "$ref": {
40
+ "type": "string",
41
+ "format": "uri-reference"
42
+ },
43
+ "$comment": {
44
+ "type": "string"
45
+ },
46
+ "title": {
47
+ "type": "string"
48
+ },
49
+ "description": {
50
+ "type": "string"
51
+ },
52
+ "default": true,
53
+ "readOnly": {
54
+ "type": "boolean",
55
+ "default": false
56
+ },
57
+ "examples": {
58
+ "type": "array",
59
+ "items": true
60
+ },
61
+ "multipleOf": {
62
+ "type": "number",
63
+ "exclusiveMinimum": 0
64
+ },
65
+ "maximum": {
66
+ "type": "number"
67
+ },
68
+ "exclusiveMaximum": {
69
+ "type": "number"
70
+ },
71
+ "minimum": {
72
+ "type": "number"
73
+ },
74
+ "exclusiveMinimum": {
75
+ "type": "number"
76
+ },
77
+ "maxLength": {"$ref": "#/definitions/nonNegativeInteger"},
78
+ "minLength": {"$ref": "#/definitions/nonNegativeIntegerDefault0"},
79
+ "pattern": {
80
+ "type": "string",
81
+ "format": "regex"
82
+ },
83
+ "additionalItems": {"$ref": "#"},
84
+ "items": {
85
+ "anyOf": [{"$ref": "#"}, {"$ref": "#/definitions/schemaArray"}],
86
+ "default": true
87
+ },
88
+ "maxItems": {"$ref": "#/definitions/nonNegativeInteger"},
89
+ "minItems": {"$ref": "#/definitions/nonNegativeIntegerDefault0"},
90
+ "uniqueItems": {
91
+ "type": "boolean",
92
+ "default": false
93
+ },
94
+ "contains": {"$ref": "#"},
95
+ "maxProperties": {"$ref": "#/definitions/nonNegativeInteger"},
96
+ "minProperties": {"$ref": "#/definitions/nonNegativeIntegerDefault0"},
97
+ "required": {"$ref": "#/definitions/stringArray"},
98
+ "additionalProperties": {"$ref": "#"},
99
+ "definitions": {
100
+ "type": "object",
101
+ "additionalProperties": {"$ref": "#"},
102
+ "default": {}
103
+ },
104
+ "properties": {
105
+ "type": "object",
106
+ "additionalProperties": {"$ref": "#"},
107
+ "default": {}
108
+ },
109
+ "patternProperties": {
110
+ "type": "object",
111
+ "additionalProperties": {"$ref": "#"},
112
+ "propertyNames": {"format": "regex"},
113
+ "default": {}
114
+ },
115
+ "dependencies": {
116
+ "type": "object",
117
+ "additionalProperties": {
118
+ "anyOf": [{"$ref": "#"}, {"$ref": "#/definitions/stringArray"}]
119
+ }
120
+ },
121
+ "propertyNames": {"$ref": "#"},
122
+ "const": true,
123
+ "enum": {
124
+ "type": "array",
125
+ "items": true,
126
+ "minItems": 1,
127
+ "uniqueItems": true
128
+ },
129
+ "type": {
130
+ "anyOf": [
131
+ {"$ref": "#/definitions/simpleTypes"},
132
+ {
133
+ "type": "array",
134
+ "items": {"$ref": "#/definitions/simpleTypes"},
135
+ "minItems": 1,
136
+ "uniqueItems": true
137
+ }
138
+ ]
139
+ },
140
+ "format": {"type": "string"},
141
+ "contentMediaType": {"type": "string"},
142
+ "contentEncoding": {"type": "string"},
143
+ "if": {"$ref": "#"},
144
+ "then": {"$ref": "#"},
145
+ "else": {"$ref": "#"},
146
+ "allOf": {"$ref": "#/definitions/schemaArray"},
147
+ "anyOf": {"$ref": "#/definitions/schemaArray"},
148
+ "oneOf": {"$ref": "#/definitions/schemaArray"},
149
+ "not": {"$ref": "#"}
150
+ },
151
+ "default": true
152
+ }
@@ -0,0 +1,14 @@
1
+ 3e1aa7055fe929029e662ec21462ab6e
2
+ {
3
+ "$id": "https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#",
4
+ "description": "Meta-schema for $data reference (JSON AnySchema extension proposal)",
5
+ "type": "object",
6
+ "required": ["$data"],
7
+ "properties": {
8
+ "$data": {
9
+ "type": "string",
10
+ "anyOf": [{"format": "relative-json-pointer"}, {"format": "json-pointer"}]
11
+ }
12
+ },
13
+ "additionalProperties": false
14
+ }
@@ -1 +1 @@
1
- {"/mnt/vss/_work/1/s/rush-plugins/rush-http-build-cache-plugin/lib/test/HttpBuildCacheProvider.test.js":[1,1307]}
1
+ {"/mnt/vss/_work/1/s/rush-plugins/rush-http-build-cache-plugin/lib/test/HttpBuildCacheProvider.test.js":[1,1880]}
@@ -1,35 +0,0 @@
1
- 262320815bc44ad4f29621c3c050553e
2
- {
3
- "name": "@rushstack/rush-http-build-cache-plugin",
4
- "version": "5.129.4",
5
- "description": "Rush plugin for generic HTTP cloud build cache",
6
- "repository": {
7
- "type": "git",
8
- "url": "https://github.com/microsoft/rushstack",
9
- "directory": "rush-plugins/rush-http-build-cache-plugin"
10
- },
11
- "homepage": "https://rushjs.io",
12
- "main": "lib/index.js",
13
- "types": "lib/index.d.ts",
14
- "license": "MIT",
15
- "scripts": {
16
- "build": "heft build --clean",
17
- "start": "heft test-watch",
18
- "test": "heft test",
19
- "_phase:build": "heft run --only build -- --clean",
20
- "_phase:test": "heft run --only test -- --clean"
21
- },
22
- "dependencies": {
23
- "@rushstack/node-core-library": "workspace:*",
24
- "@rushstack/rush-sdk": "workspace:*",
25
- "https-proxy-agent": "~5.0.0",
26
- "node-fetch": "2.6.7"
27
- },
28
- "devDependencies": {
29
- "@microsoft/rush-lib": "workspace:*",
30
- "@rushstack/heft": "workspace:*",
31
- "@rushstack/terminal": "workspace:*",
32
- "local-node-rig": "workspace:*",
33
- "@types/node-fetch": "2.6.2"
34
- }
35
- }