diff --git a/badge-maker_lib_index.js.html b/badge-maker_lib_index.js.html index 3b556e4dee..8e76647ea2 100644 --- a/badge-maker_lib_index.js.html +++ b/badge-maker_lib_index.js.html @@ -123,7 +123,7 @@ module.exports = {
diff --git a/badge-maker_lib_xml.js.html b/badge-maker_lib_xml.js.html index 836f953620..411f8842dc 100644 --- a/badge-maker_lib_xml.js.html +++ b/badge-maker_lib_xml.js.html @@ -138,7 +138,7 @@ module.exports = { escapeXml, stripXmlWhitespace, XmlElement, ElementList }
diff --git a/core_base-service_base-graphql.js.html b/core_base-service_base-graphql.js.html index 913e065729..2011af82d2 100644 --- a/core_base-service_base-graphql.js.html +++ b/core_base-service_base-graphql.js.html @@ -144,7 +144,7 @@ export default BaseGraphqlService
diff --git a/core_base-service_base-json.js.html b/core_base-service_base-json.js.html index a12837ec05..0eb43ef1ba 100644 --- a/core_base-service_base-json.js.html +++ b/core_base-service_base-json.js.html @@ -110,7 +110,7 @@ export default BaseJsonService
diff --git a/core_base-service_base-svg-scraping.js.html b/core_base-service_base-svg-scraping.js.html index 9082e73981..14363b25f6 100644 --- a/core_base-service_base-svg-scraping.js.html +++ b/core_base-service_base-svg-scraping.js.html @@ -141,7 +141,7 @@ export default BaseSvgScrapingService
diff --git a/core_base-service_base-xml.js.html b/core_base-service_base-xml.js.html index b875fa9845..a402944bcd 100644 --- a/core_base-service_base-xml.js.html +++ b/core_base-service_base-xml.js.html @@ -120,7 +120,7 @@ export default BaseXmlService
diff --git a/core_base-service_base-yaml.js.html b/core_base-service_base-yaml.js.html index 0da9075d68..10c57dc820 100644 --- a/core_base-service_base-yaml.js.html +++ b/core_base-service_base-yaml.js.html @@ -123,7 +123,7 @@ export default BaseYamlService
diff --git a/core_base-service_base.js.html b/core_base-service_base.js.html index 22fd8d27cf..72bd8f633c 100644 --- a/core_base-service_base.js.html +++ b/core_base-service_base.js.html @@ -642,7 +642,7 @@ export default BaseService
diff --git a/core_base-service_errors.js.html b/core_base-service_errors.js.html index d4ff7d03e3..7eacaa013a 100644 --- a/core_base-service_errors.js.html +++ b/core_base-service_errors.js.html @@ -265,7 +265,7 @@ export {
diff --git a/core_base-service_graphql.js.html b/core_base-service_graphql.js.html index 2485d21ac5..ea47ea53a4 100644 --- a/core_base-service_graphql.js.html +++ b/core_base-service_graphql.js.html @@ -93,7 +93,7 @@ export { mergeQueries }
diff --git a/core_base-service_resource-cache.js.html b/core_base-service_resource-cache.js.html index cfc042fb2f..6f59e253fb 100644 --- a/core_base-service_resource-cache.js.html +++ b/core_base-service_resource-cache.js.html @@ -111,7 +111,7 @@ export { getCachedResource, clearResourceCache }
diff --git a/core_server_prometheus-metrics.js.html b/core_server_prometheus-metrics.js.html index 5833d9e80e..88c83b174f 100644 --- a/core_server_prometheus-metrics.js.html +++ b/core_server_prometheus-metrics.js.html @@ -127,7 +127,7 @@ export default class PrometheusMetrics {
diff --git a/core_server_server.js.html b/core_server_server.js.html index 5675ce0b37..21004e0374 100644 --- a/core_server_server.js.html +++ b/core_server_server.js.html @@ -390,20 +390,23 @@ class Server { }) if (!rasterUrl) { - camp.route(/^\/((?!img\/)).*\.png$/, (query, match, end, request) => { - makeSend( - 'svg', - request.res, - end, - )( - makeBadge({ - label: '404', - message: 'raster badges not available', - color: 'lightgray', - format: 'svg', - }), - ) - }) + camp.route( + /^\/((?!img|assets\/)).*\.png$/, + (query, match, end, request) => { + makeSend( + 'svg', + request.res, + end, + )( + makeBadge({ + label: '404', + message: 'raster badges not available', + color: 'lightgray', + format: 'svg', + }), + ) + }, + ) } camp.notfound(/(\.svg|\.json|)$/, (query, match, end, request) => { @@ -440,18 +443,21 @@ class Server { if (rasterUrl) { // Redirect to the raster server for raster versions of modern badges. - camp.route(/^\/((?!img\/)).*\.png$/, (queryParams, match, end, ask) => { - ask.res.statusCode = 301 - ask.res.setHeader( - 'Location', - rasterRedirectUrl({ rasterUrl }, ask.req.url), - ) + camp.route( + /^\/((?!img|assets\/)).*\.png$/, + (queryParams, match, end, ask) => { + ask.res.statusCode = 301 + ask.res.setHeader( + 'Location', + rasterRedirectUrl({ rasterUrl }, ask.req.url), + ) - const cacheDuration = (30 * 24 * 3600) | 0 // 30 days. - ask.res.setHeader('Cache-Control', `max-age=${cacheDuration}`) + const cacheDuration = (30 * 24 * 3600) | 0 // 30 days. + ask.res.setHeader('Cache-Control', `max-age=${cacheDuration}`) - ask.res.end() - }) + ask.res.end() + }, + ) } if (redirectUrl) { @@ -636,7 +642,7 @@ export default Server
diff --git a/core_service-test-runner_create-service-tester.js.html b/core_service-test-runner_create-service-tester.js.html index caaed124de..362e365d4b 100644 --- a/core_service-test-runner_create-service-tester.js.html +++ b/core_service-test-runner_create-service-tester.js.html @@ -74,7 +74,7 @@ export default createServiceTester
diff --git a/core_service-test-runner_icedfrisby-shields.js.html b/core_service-test-runner_icedfrisby-shields.js.html index aaa9bb0a95..1a5e3f5e0a 100644 --- a/core_service-test-runner_icedfrisby-shields.js.html +++ b/core_service-test-runner_icedfrisby-shields.js.html @@ -146,7 +146,7 @@ export default factory
diff --git a/core_service-test-runner_runner.js.html b/core_service-test-runner_runner.js.html index 400c644fd1..5a09d57f77 100644 --- a/core_service-test-runner_runner.js.html +++ b/core_service-test-runner_runner.js.html @@ -118,7 +118,7 @@ export default Runner
diff --git a/core_service-test-runner_service-tester.js.html b/core_service-test-runner_service-tester.js.html index 0ebe365e7c..636b437e76 100644 --- a/core_service-test-runner_service-tester.js.html +++ b/core_service-test-runner_service-tester.js.html @@ -184,7 +184,7 @@ export default ServiceTester
diff --git a/core_service-test-runner_services-for-title.js.html b/core_service-test-runner_services-for-title.js.html index e3a016e24f..63ac9c0f4b 100644 --- a/core_service-test-runner_services-for-title.js.html +++ b/core_service-test-runner_services-for-title.js.html @@ -75,7 +75,7 @@ export default servicesForTitle
diff --git a/core_token-pooling_token-pool.js.html b/core_token-pooling_token-pool.js.html index dc5417017f..d6930a6fc2 100644 --- a/core_token-pooling_token-pool.js.html +++ b/core_token-pooling_token-pool.js.html @@ -379,7 +379,7 @@ export { sanitizeToken, Token, TokenPool }
diff --git a/global.html b/global.html index a1af0d3857..8a0a50582a 100644 --- a/global.html +++ b/global.html @@ -684,7 +684,7 @@
diff --git a/index.html b/index.html index e5e859d374..b3676555a3 100644 --- a/index.html +++ b/index.html @@ -220,7 +220,7 @@ under their terms and license.


diff --git a/module-badge-maker.html b/module-badge-maker.html index 7e5edd1ec0..0f143c5852 100644 --- a/module-badge-maker.html +++ b/module-badge-maker.html @@ -429,7 +429,7 @@
diff --git a/module-badge-maker_lib_xml-ElementList.html b/module-badge-maker_lib_xml-ElementList.html index 7dd85cbba8..c78b7db6c3 100644 --- a/module-badge-maker_lib_xml-ElementList.html +++ b/module-badge-maker_lib_xml-ElementList.html @@ -163,7 +163,7 @@ like an XmlElement but renders multiple XML tags (not wrapped in a ).

diff --git a/module-badge-maker_lib_xml-XmlElement.html b/module-badge-maker_lib_xml-XmlElement.html index 1c0c0e55ef..e99515a1a1 100644 --- a/module-badge-maker_lib_xml-XmlElement.html +++ b/module-badge-maker_lib_xml-XmlElement.html @@ -474,7 +474,7 @@ element will be rendered as a self-closing element.


diff --git a/module-badge-maker_lib_xml.html b/module-badge-maker_lib_xml.html index e1b92c8b7f..968985a5cb 100644 --- a/module-badge-maker_lib_xml.html +++ b/module-badge-maker_lib_xml.html @@ -128,7 +128,7 @@
diff --git a/module-core_base-service_base-BaseService.html b/module-core_base-service_base-BaseService.html index 8f0394dcfe..4b82cf8491 100644 --- a/module-core_base-service_base-BaseService.html +++ b/module-core_base-service_base-BaseService.html @@ -815,7 +815,7 @@ defined in this.route.pattern or this.route.capture


diff --git a/module-core_base-service_base-graphql-BaseGraphqlService.html b/module-core_base-service_base-graphql-BaseGraphqlService.html index 8f599d7879..82b4643e95 100644 --- a/module-core_base-service_base-graphql-BaseGraphqlService.html +++ b/module-core_base-service_base-graphql-BaseGraphqlService.html @@ -873,7 +873,7 @@ an InvalidResponse.


diff --git a/module-core_base-service_base-graphql.html b/module-core_base-service_base-graphql.html index 6c8c58c170..beffcda216 100644 --- a/module-core_base-service_base-graphql.html +++ b/module-core_base-service_base-graphql.html @@ -125,7 +125,7 @@
diff --git a/module-core_base-service_base-json-BaseJsonService.html b/module-core_base-service_base-json-BaseJsonService.html index 08144b7b5c..9ebd87f70f 100644 --- a/module-core_base-service_base-json-BaseJsonService.html +++ b/module-core_base-service_base-json-BaseJsonService.html @@ -718,7 +718,7 @@ and module:cor
diff --git a/module-core_base-service_base-json.html b/module-core_base-service_base-json.html index 9e60dd9d34..cbe227249d 100644 --- a/module-core_base-service_base-json.html +++ b/module-core_base-service_base-json.html @@ -125,7 +125,7 @@
diff --git a/module-core_base-service_base-svg-scraping-BaseSvgScrapingService.html b/module-core_base-service_base-svg-scraping-BaseSvgScrapingService.html index da3440fa90..d2e7ca93d8 100644 --- a/module-core_base-service_base-svg-scraping-BaseSvgScrapingService.html +++ b/module-core_base-service_base-svg-scraping-BaseSvgScrapingService.html @@ -809,7 +809,7 @@ and module:cor
diff --git a/module-core_base-service_base-svg-scraping.html b/module-core_base-service_base-svg-scraping.html index ddc5416ef0..27bcb32753 100644 --- a/module-core_base-service_base-svg-scraping.html +++ b/module-core_base-service_base-svg-scraping.html @@ -125,7 +125,7 @@
diff --git a/module-core_base-service_base-xml-BaseXmlService.html b/module-core_base-service_base-xml-BaseXmlService.html index 28a79773e1..0d0e20dd8a 100644 --- a/module-core_base-service_base-xml-BaseXmlService.html +++ b/module-core_base-service_base-xml-BaseXmlService.html @@ -601,7 +601,7 @@ and module:cor
diff --git a/module-core_base-service_base-xml.html b/module-core_base-service_base-xml.html index 43b4ace830..f92e39b570 100644 --- a/module-core_base-service_base-xml.html +++ b/module-core_base-service_base-xml.html @@ -125,7 +125,7 @@
diff --git a/module-core_base-service_base-yaml-BaseYamlService.html b/module-core_base-service_base-yaml-BaseYamlService.html index 40e5e10b01..b27c8461e6 100644 --- a/module-core_base-service_base-yaml-BaseYamlService.html +++ b/module-core_base-service_base-yaml-BaseYamlService.html @@ -598,7 +598,7 @@ and module:cor
diff --git a/module-core_base-service_base-yaml.html b/module-core_base-service_base-yaml.html index cd93e9ace1..214af53879 100644 --- a/module-core_base-service_base-yaml.html +++ b/module-core_base-service_base-yaml.html @@ -125,7 +125,7 @@
diff --git a/module-core_base-service_base.html b/module-core_base-service_base.html index 3c3850bb63..be22901e86 100644 --- a/module-core_base-service_base.html +++ b/module-core_base-service_base.html @@ -1208,7 +1208,7 @@ when the parameter is absent. (Note that in,
diff --git a/module-core_base-service_errors-Deprecated.html b/module-core_base-service_errors-Deprecated.html index c2e95bd803..f37ddddfe5 100644 --- a/module-core_base-service_errors-Deprecated.html +++ b/module-core_base-service_errors-Deprecated.html @@ -211,7 +211,7 @@
diff --git a/module-core_base-service_errors-ImproperlyConfigured.html b/module-core_base-service_errors-ImproperlyConfigured.html index 9310148047..ca9b68eb08 100644 --- a/module-core_base-service_errors-ImproperlyConfigured.html +++ b/module-core_base-service_errors-ImproperlyConfigured.html @@ -211,7 +211,7 @@
diff --git a/module-core_base-service_errors-Inaccessible.html b/module-core_base-service_errors-Inaccessible.html index 80285a4c47..7566c52d58 100644 --- a/module-core_base-service_errors-Inaccessible.html +++ b/module-core_base-service_errors-Inaccessible.html @@ -212,7 +212,7 @@ or to wrap a 5XX response


diff --git a/module-core_base-service_errors-InvalidParameter.html b/module-core_base-service_errors-InvalidParameter.html index 66f2ca9d57..be51fec3a7 100644 --- a/module-core_base-service_errors-InvalidParameter.html +++ b/module-core_base-service_errors-InvalidParameter.html @@ -212,7 +212,7 @@ is invalid or unexpected


diff --git a/module-core_base-service_errors-InvalidResponse.html b/module-core_base-service_errors-InvalidResponse.html index 1b875180a5..b3f76238ba 100644 --- a/module-core_base-service_errors-InvalidResponse.html +++ b/module-core_base-service_errors-InvalidResponse.html @@ -211,7 +211,7 @@
diff --git a/module-core_base-service_errors-NotFound.html b/module-core_base-service_errors-NotFound.html index 12b8e81ad6..974a007474 100644 --- a/module-core_base-service_errors-NotFound.html +++ b/module-core_base-service_errors-NotFound.html @@ -211,7 +211,7 @@
diff --git a/module-core_base-service_errors-ShieldsRuntimeError.html b/module-core_base-service_errors-ShieldsRuntimeError.html index 6dd25cdefb..0485d80278 100644 --- a/module-core_base-service_errors-ShieldsRuntimeError.html +++ b/module-core_base-service_errors-ShieldsRuntimeError.html @@ -384,7 +384,7 @@ should override this method.


diff --git a/module-core_base-service_errors.html b/module-core_base-service_errors.html index 83c742492e..216eb9838c 100644 --- a/module-core_base-service_errors.html +++ b/module-core_base-service_errors.html @@ -343,7 +343,7 @@ for. Defaults to the cacheLength of the service class throwing the error
diff --git a/module-core_base-service_graphql.html b/module-core_base-service_graphql.html index 5f9c8bcd23..d61d583a1f 100644 --- a/module-core_base-service_graphql.html +++ b/module-core_base-service_graphql.html @@ -296,7 +296,7 @@ but can't use that due to incorrect packaging.


diff --git a/module-core_base-service_resource-cache.html b/module-core_base-service_resource-cache.html index f95bf38f95..1e7ec42975 100644 --- a/module-core_base-service_resource-cache.html +++ b/module-core_base-service_resource-cache.html @@ -568,7 +568,7 @@
diff --git a/module-core_server_server-Server.html b/module-core_server_server-Server.html index 87140bc7a3..12abb85836 100644 --- a/module-core_server_server-Server.html +++ b/module-core_server_server-Server.html @@ -361,7 +361,7 @@ to https://shields.io/ )

Source:
@@ -450,7 +450,7 @@ load each service and register a Scoutcamp route for each service.

Source:
@@ -541,7 +541,7 @@ Start listening for requests on this.baseUrl()

Source:
@@ -629,7 +629,7 @@ Start listening for requests on this.baseUrl()

Source:
@@ -681,7 +681,7 @@ Start listening for requests on this.baseUrl()


diff --git a/module-core_server_server.html b/module-core_server_server.html index 86d3d93c45..d1346239d2 100644 --- a/module-core_server_server.html +++ b/module-core_server_server.html @@ -125,7 +125,7 @@
diff --git a/module-core_service-test-runner_create-service-tester.html b/module-core_service-test-runner_create-service-tester.html index 4955f7ba28..cf25c2e7a9 100644 --- a/module-core_service-test-runner_create-service-tester.html +++ b/module-core_service-test-runner_create-service-tester.html @@ -236,7 +236,7 @@ service.


diff --git a/module-core_service-test-runner_icedfrisby-shields.html b/module-core_service-test-runner_icedfrisby-shields.html index e864af16a7..4b5dbafbb2 100644 --- a/module-core_service-test-runner_icedfrisby-shields.html +++ b/module-core_service-test-runner_icedfrisby-shields.html @@ -292,7 +292,7 @@
diff --git a/module-core_service-test-runner_runner-Runner.html b/module-core_service-test-runner_runner-Runner.html index 3c9e140b7c..92cb63e857 100644 --- a/module-core_service-test-runner_runner-Runner.html +++ b/module-core_service-test-runner_runner-Runner.html @@ -568,7 +568,7 @@ overridden on instances.


diff --git a/module-core_service-test-runner_runner.html b/module-core_service-test-runner_runner.html index d90fbd2b59..093eef9063 100644 --- a/module-core_service-test-runner_runner.html +++ b/module-core_service-test-runner_runner.html @@ -125,7 +125,7 @@
diff --git a/module-core_service-test-runner_service-tester-ServiceTester.html b/module-core_service-test-runner_service-tester-ServiceTester.html index bca0d442fe..5ba8c951c4 100644 --- a/module-core_service-test-runner_service-tester-ServiceTester.html +++ b/module-core_service-test-runner_service-tester-ServiceTester.html @@ -1126,7 +1126,7 @@ the CLI, or directly on the tester.


diff --git a/module-core_service-test-runner_service-tester.html b/module-core_service-test-runner_service-tester.html index b44845a0a7..b6689f9307 100644 --- a/module-core_service-test-runner_service-tester.html +++ b/module-core_service-test-runner_service-tester.html @@ -125,7 +125,7 @@
diff --git a/module-core_service-test-runner_services-for-title.html b/module-core_service-test-runner_services-for-title.html index 57b216612e..c247475e20 100644 --- a/module-core_service-test-runner_services-for-title.html +++ b/module-core_service-test-runner_services-for-title.html @@ -284,7 +284,7 @@ as an array of strings.


diff --git a/module-core_token-pooling_token-pool-Token.html b/module-core_token-pooling_token-pool-Token.html index d2fb130ddc..0492bcfbc9 100644 --- a/module-core_token-pooling_token-pool-Token.html +++ b/module-core_token-pooling_token-pool-Token.html @@ -715,7 +715,7 @@ stable ordering for a valid priority queue.


diff --git a/module-core_token-pooling_token-pool-TokenPool.html b/module-core_token-pooling_token-pool-TokenPool.html index f68bdc49b9..8f7ff99bd7 100644 --- a/module-core_token-pooling_token-pool-TokenPool.html +++ b/module-core_token-pooling_token-pool-TokenPool.html @@ -899,7 +899,7 @@ indicate it should not be reused.


diff --git a/module-core_token-pooling_token-pool.html b/module-core_token-pooling_token-pool.html index c3ddcd789d..942f950a2b 100644 --- a/module-core_token-pooling_token-pool.html +++ b/module-core_token-pooling_token-pool.html @@ -291,7 +291,7 @@
diff --git a/module-services_build-status.html b/module-services_build-status.html index 94c7b455b8..3d94a38877 100644 --- a/module-services_build-status.html +++ b/module-services_build-status.html @@ -453,7 +453,7 @@ Determines the message and color of the badge according to the build status.


diff --git a/module-services_color-formatters.html b/module-services_color-formatters.html index 06c6b0e862..967683d96a 100644 --- a/module-services_color-formatters.html +++ b/module-services_color-formatters.html @@ -1532,7 +1532,7 @@ The color defaults to red if the score does not matches with any of the grade va
diff --git a/module-services_contributor-count.html b/module-services_contributor-count.html index 845d1a1ae4..af1839488b 100644 --- a/module-services_contributor-count.html +++ b/module-services_contributor-count.html @@ -536,7 +536,7 @@ Determines the message and color of the badge according to the contributor count
diff --git a/module-services_downloads.html b/module-services_downloads.html index 3a6adb3c98..51f7c74d54 100644 --- a/module-services_downloads.html +++ b/module-services_downloads.html @@ -546,7 +546,7 @@ this value as the prefix for versioned badges, e.g. foobar@v1.23. D
diff --git a/module-services_dynamic-common.html b/module-services_dynamic-common.html index 1765f3572a..83dd5425c5 100644 --- a/module-services_dynamic-common.html +++ b/module-services_dynamic-common.html @@ -960,7 +960,7 @@ Sets the color of the badge to blue.


diff --git a/module-services_dynamic_json-path.html b/module-services_dynamic_json-path.html index a6ac5fa730..fdf9fa1273 100644 --- a/module-services_dynamic_json-path.html +++ b/module-services_dynamic_json-path.html @@ -423,7 +423,7 @@ This can be used to extend or override the
diff --git a/module-services_endpoint-common.html b/module-services_endpoint-common.html index dbad25fec3..f3c65232d3 100644 --- a/module-services_endpoint-common.html +++ b/module-services_endpoint-common.html @@ -810,7 +810,7 @@ Optionally it prints those keys in the message to provide detailed feedback.


diff --git a/module-services_licenses.html b/module-services_licenses.html index a0dee0a0ce..3d58514753 100644 --- a/module-services_licenses.html +++ b/module-services_licenses.html @@ -650,7 +650,7 @@ Sets the badge color to the provided value, if not provided then the color is us
diff --git a/module-services_package-json-helpers.html b/module-services_package-json-helpers.html index 8df03aa567..06f4409251 100644 --- a/module-services_package-json-helpers.html +++ b/module-services_package-json-helpers.html @@ -656,7 +656,7 @@ Checks if the object has all the dependency types and the dependency types are v
diff --git a/module-services_php-version.html b/module-services_php-version.html index 5e3d5c46cf..adcba6cfc6 100644 --- a/module-services_php-version.html +++ b/module-services_php-version.html @@ -1472,7 +1472,7 @@ Return { numbers: [1,0,something big], modifier: 2, modifierCount: 1 }


diff --git a/module-services_pipenv-helpers.html b/module-services_pipenv-helpers.html index 4520e00175..ef1603a02f 100644 --- a/module-services_pipenv-helpers.html +++ b/module-services_pipenv-helpers.html @@ -616,7 +616,7 @@ Checks if the lock file object has required properties and the properties are va
diff --git a/module-services_route-builder.html b/module-services_route-builder.html index c6c00d5c2a..647b6d2db8 100644 --- a/module-services_route-builder.html +++ b/module-services_route-builder.html @@ -621,7 +621,7 @@
diff --git a/module-services_steam_steam-base-BaseSteamAPI.html b/module-services_steam_steam-base-BaseSteamAPI.html index 1e5bee428e..045094d3d4 100644 --- a/module-services_steam_steam-base-BaseSteamAPI.html +++ b/module-services_steam_steam-base-BaseSteamAPI.html @@ -380,7 +380,7 @@
diff --git a/module-services_steam_steam-base.html b/module-services_steam_steam-base.html index dfd4f319ef..a11c1592e7 100644 --- a/module-services_steam_steam-base.html +++ b/module-services_steam_steam-base.html @@ -125,7 +125,7 @@
diff --git a/module-services_text-formatters.html b/module-services_text-formatters.html index fda958b363..498789b24f 100644 --- a/module-services_text-formatters.html +++ b/module-services_text-formatters.html @@ -1680,7 +1680,7 @@ The remaining stars are empty stars until the maximum number of stars is reached
diff --git a/module-services_validators.html b/module-services_validators.html index 8b9ced28d1..e4b2853b28 100644 --- a/module-services_validators.html +++ b/module-services_validators.html @@ -707,7 +707,7 @@ Some invalid values for this validator are: abc, 1.a, 1.0-, .1


diff --git a/services_build-status.js.html b/services_build-status.js.html index 97c2afffee..b700a994d9 100644 --- a/services_build-status.js.html +++ b/services_build-status.js.html @@ -140,7 +140,7 @@ export { isBuildStatus, renderBuildStatusBadge }
diff --git a/services_color-formatters.js.html b/services_color-formatters.js.html index f0edafc76b..1e7e6b3375 100644 --- a/services_color-formatters.js.html +++ b/services_color-formatters.js.html @@ -240,7 +240,7 @@ export {
diff --git a/services_contributor-count.js.html b/services_contributor-count.js.html index 9e83b900ec..77402e8974 100644 --- a/services_contributor-count.js.html +++ b/services_contributor-count.js.html @@ -85,7 +85,7 @@ export { contributorColor, renderContributorBadge }
diff --git a/services_downloads.js.html b/services_downloads.js.html index d29f35d7db..2a02ce6630 100644 --- a/services_downloads.js.html +++ b/services_downloads.js.html @@ -101,7 +101,7 @@ export { renderDownloadsBadge }
diff --git a/services_dynamic-common.js.html b/services_dynamic-common.js.html index 080f6ad900..1ff2ffb015 100644 --- a/services_dynamic-common.js.html +++ b/services_dynamic-common.js.html @@ -142,7 +142,7 @@ export {
diff --git a/services_dynamic_json-path.js.html b/services_dynamic_json-path.js.html index a57dcd9faf..2b461538e5 100644 --- a/services_dynamic_json-path.js.html +++ b/services_dynamic_json-path.js.html @@ -120,7 +120,7 @@ export default superclass =>
diff --git a/services_endpoint-common.js.html b/services_endpoint-common.js.html index c257a11c75..af1d5143d6 100644 --- a/services_endpoint-common.js.html +++ b/services_endpoint-common.js.html @@ -148,7 +148,7 @@ export { validateEndpointData, fetchEndpointData }
diff --git a/services_licenses.js.html b/services_licenses.js.html index d6c8fbdcc7..cdc3105428 100644 --- a/services_licenses.js.html +++ b/services_licenses.js.html @@ -201,7 +201,7 @@ export { licenseToColor, renderLicenseBadge }
diff --git a/services_package-json-helpers.js.html b/services_package-json-helpers.js.html index 062a33c452..4166b7aa01 100644 --- a/services_package-json-helpers.js.html +++ b/services_package-json-helpers.js.html @@ -120,7 +120,7 @@ export { isDependencyMap, isPackageJsonWithDependencies, getDependencyVersion }
diff --git a/services_packagist_packagist-base.js.html b/services_packagist_packagist-base.js.html index 10b21858c3..9fc988c3db 100644 --- a/services_packagist_packagist-base.js.html +++ b/services_packagist_packagist-base.js.html @@ -227,7 +227,7 @@ export {
diff --git a/services_php-version.js.html b/services_php-version.js.html index 505dc71f50..dc1eb56906 100644 --- a/services_php-version.js.html +++ b/services_php-version.js.html @@ -341,7 +341,7 @@ export {
diff --git a/services_pipenv-helpers.js.html b/services_pipenv-helpers.js.html index 260412b5d7..7bbe27fac9 100644 --- a/services_pipenv-helpers.js.html +++ b/services_pipenv-helpers.js.html @@ -128,7 +128,7 @@ export { isLockfile, getDependencyVersion }
diff --git a/services_route-builder.js.html b/services_route-builder.js.html index a95774192e..e13c41122f 100644 --- a/services_route-builder.js.html +++ b/services_route-builder.js.html @@ -105,7 +105,7 @@ export default class RouteBuilder {
diff --git a/services_steam_steam-base.js.html b/services_steam_steam-base.js.html index c5e93558d8..1f3801f2b0 100644 --- a/services_steam_steam-base.js.html +++ b/services_steam_steam-base.js.html @@ -98,7 +98,7 @@ export default BaseSteamAPI
diff --git a/services_test-validators.js.html b/services_test-validators.js.html index 6766dce0f1..13a6eb8cd3 100644 --- a/services_test-validators.js.html +++ b/services_test-validators.js.html @@ -259,7 +259,7 @@ export {
diff --git a/services_text-formatters.js.html b/services_text-formatters.js.html index e612c64ec0..09e4f03c51 100644 --- a/services_text-formatters.js.html +++ b/services_text-formatters.js.html @@ -252,7 +252,7 @@ export {
diff --git a/services_validators.js.html b/services_validators.js.html index a052e6962f..285b1a783f 100644 --- a/services_validators.js.html +++ b/services_validators.js.html @@ -123,7 +123,7 @@ export const fileSize = Joi.string()
diff --git a/tutorial-TUTORIAL.html b/tutorial-TUTORIAL.html index 9777728c12..51e22c4dd8 100644 --- a/tutorial-TUTORIAL.html +++ b/tutorial-TUTORIAL.html @@ -377,7 +377,7 @@ will review your contribution.
diff --git a/tutorial-adding-new-config-values.html b/tutorial-adding-new-config-values.html index b43fe71226..a958259f76 100644 --- a/tutorial-adding-new-config-values.html +++ b/tutorial-adding-new-config-values.html @@ -60,7 +60,7 @@
diff --git a/tutorial-authentication.html b/tutorial-authentication.html index 78a0b10d81..524c80d517 100644 --- a/tutorial-authentication.html +++ b/tutorial-authentication.html @@ -48,7 +48,7 @@
diff --git a/tutorial-badge-urls.html b/tutorial-badge-urls.html index 7ee582d76c..d2a14e1f02 100644 --- a/tutorial-badge-urls.html +++ b/tutorial-badge-urls.html @@ -83,7 +83,7 @@ badge is for issues, and the parameters are :user/:repo.
diff --git a/tutorial-code-walkthrough.html b/tutorial-code-walkthrough.html index 8a7f758f61..4ba70f9e48 100644 --- a/tutorial-code-walkthrough.html +++ b/tutorial-code-walkthrough.html @@ -235,7 +235,7 @@ result over the HTTPS connection.
diff --git a/tutorial-deprecating-badges.html b/tutorial-deprecating-badges.html index 857ad74fe7..9a267bc74c 100644 --- a/tutorial-deprecating-badges.html +++ b/tutorial-deprecating-badges.html @@ -149,7 +149,7 @@ t.create('no longer available (previously number of layers)')
diff --git a/tutorial-input-validation.html b/tutorial-input-validation.html index aaeac4b27d..7e1c460ed9 100644 --- a/tutorial-input-validation.html +++ b/tutorial-input-validation.html @@ -103,7 +103,7 @@
diff --git a/tutorial-json-format.html b/tutorial-json-format.html index 2872b60567..3c4a322809 100644 --- a/tutorial-json-format.html +++ b/tutorial-json-format.html @@ -60,7 +60,7 @@ if you have any queries regarding the JSON format.


diff --git a/tutorial-logos.html b/tutorial-logos.html index 06a440e3e2..eeb1550737 100644 --- a/tutorial-logos.html +++ b/tutorial-logos.html @@ -86,7 +86,7 @@
diff --git a/tutorial-performance-testing.html b/tutorial-performance-testing.html index f0bde1a2ca..4b970e15aa 100644 --- a/tutorial-performance-testing.html +++ b/tutorial-performance-testing.html @@ -76,7 +76,7 @@ node --prof-process --preprocess -j isolate-00000244AB6ED3B0-11920-v8.log | flam
diff --git a/tutorial-production-hosting.html b/tutorial-production-hosting.html index b8b0b2bef3..b3157e10c0 100644 --- a/tutorial-production-hosting.html +++ b/tutorial-production-hosting.html @@ -217,7 +217,7 @@ via local-shields-io-production.yml (see diff --git a/tutorial-releases.html b/tutorial-releases.html index 86aaa9a4ab..604871939c 100644 --- a/tutorial-releases.html +++ b/tutorial-releases.html @@ -79,7 +79,7 @@
diff --git a/tutorial-self-hosting.html b/tutorial-self-hosting.html index 90476b2192..34dca7b279 100644 --- a/tutorial-self-hosting.html +++ b/tutorial-self-hosting.html @@ -180,7 +180,7 @@ Set public.requireCloudflare: true.


diff --git a/tutorial-server-secrets.html b/tutorial-server-secrets.html index 2e2a9c6a2c..576fb4f422 100644 --- a/tutorial-server-secrets.html +++ b/tutorial-server-secrets.html @@ -294,7 +294,7 @@ and create an API key for the YouTube Data API v3.


diff --git a/tutorial-service-tests.html b/tutorial-service-tests.html index 8ab27fae0b..7716088415 100644 --- a/tutorial-service-tests.html +++ b/tutorial-service-tests.html @@ -246,7 +246,7 @@ comment there instead.


diff --git a/tutorial-static-badges.html b/tutorial-static-badges.html index 78c94ca418..7e0a7d21a5 100644 --- a/tutorial-static-badges.html +++ b/tutorial-static-badges.html @@ -42,7 +42,7 @@