// import { major } from 'semver'; // import { name, version } from '../package.json'; const { createHash } = require('crypto') // function to use for creating hashes const VERSION = '4' const SHA = 'sha1' // name of coverage data magic key // const MAGIC_KEY = '_coverageSchema' // name of coverage data magic value // export const MAGIC_VALUE = createHash(SHA).update(name + '@' + major(version)).digest('hex'); module.exports = { SHA, MAGIC_KEY: '_coverageSchema', MAGIC_VALUE: createHash(SHA) .update('name' + '@' + VERSION) .digest('hex') }