Purge Babel Cache (#9514)

* Bust Babel Cache

* Increase e
This commit is contained in:
Joe Haddad 2019-11-25 14:16:04 -05:00 committed by GitHub
parent b058427b76
commit 0a86b149fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,9 +2,9 @@ import hash from 'string-hash'
import { join, basename } from 'path'
import babelLoader from 'babel-loader'
// increment 'd' to invalidate cache
// increment 'e' to invalidate cache
// eslint-disable-next-line no-useless-concat
const cacheKey = 'babel-cache-' + 'd' + '-'
const cacheKey = 'babel-cache-' + 'e' + '-'
const nextBabelPreset = require('../../babel/preset')
const getModernOptions = (babelOptions = {}) => {