@rushstack/rush-http-build-cache-plugin 5.129.6 → 5.130.0

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-8a3b73f91812d3144f312ca456569542afdd48e5.tar.log → rushstack+rush-http-build-cache-plugin-_phase_build-4de144865ab3d768372162c19b466e9eb637b0ac.tar.log} +2 -2
  10. package/.rush/temp/{rushstack+rush-http-build-cache-plugin-_phase_test-7e3a8e026894abf7128a3a937c7987439146c935.tar.log → rushstack+rush-http-build-cache-plugin-_phase_test-29eee7219551387c4fa795e86fa9692ad6487f35.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 +3 -3
  17. package/package.json +6 -6
  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/27/data_27cfd3543d87329d0a54052760e59e98 +14 -0
  25. package/temp/test/jest/jest-transform-cache-8bff56e236187dbf28a94cdea7ee2158-79ef2876fae7ca75eedb2aa53dc48338/2b/jsonschemadraft07_2b87e3f86e4dbb4bff54f1e2dbd592c4 +152 -0
  26. package/temp/test/jest/jest-transform-cache-8bff56e236187dbf28a94cdea7ee2158-79ef2876fae7ca75eedb2aa53dc48338/6a/jsonschemadraft04_6aff61862351f85b1d1c4996ab0371d5 +139 -0
  27. package/temp/test/jest/jest-transform-cache-8bff56e236187dbf28a94cdea7ee2158-79ef2876fae7ca75eedb2aa53dc48338/79/mappingTable_798a82b700ebbeedf47814cb7202a793 +2 -0
  28. package/temp/test/jest/jest-transform-cache-8bff56e236187dbf28a94cdea7ee2158-79ef2876fae7ca75eedb2aa53dc48338/e5/core_e5ee206dcc94ffd5da1f6df7ec408a88 +159 -0
  29. package/temp/test/jest/jest-transform-cache-8bff56e236187dbf28a94cdea7ee2158-79ef2876fae7ca75eedb2aa53dc48338/e8/core_e8dd9049d5055179a206ccbc837d7d1b +161 -0
  30. package/temp/test/jest/perf-cache-8bff56e236187dbf28a94cdea7ee2158-da39a3ee5e6b4b0d3255bfef95601890 +1 -1
  31. package/temp/test/jest/jest-transform-cache-8bff56e236187dbf28a94cdea7ee2158-79ef2876fae7ca75eedb2aa53dc48338/4a/package_4ac0a3b4cff682ed5b99d3e31a6e1309 +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
+ }