Sha256: d1e25e23201d987c17caefeac829892f94a55188c92bf35f0cd976d48dcb8d04
Contents?: true
Size: 659 Bytes
Versions: 6
Compression:
Stored size: 659 Bytes
Contents
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); exports.default = logDebugMessages; /** * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ const VERSION = require('../../package.json').version; // if the output here changes, update `getConfig` in e2e/runJest.ts function logDebugMessages(globalConfig, configs, outputStream) { const output = { configs, globalConfig, version: VERSION }; outputStream.write(JSON.stringify(output, null, ' ') + '\n'); }
Version data entries
6 entries across 6 versions & 1 rubygems