Remove the sourceMapTarget option from core and implement it in babel-cli. (#7500)

This commit is contained in:
Logan Smyth
2018-03-09 14:14:25 -08:00
committed by GitHub
parent 0389035e15
commit b5e6536f26
16 changed files with 20 additions and 27 deletions

View File

@@ -19,7 +19,6 @@ export default class SourceMap {
get() {
if (!this._cachedMap) {
const map = (this._cachedMap = new sourceMap.SourceMapGenerator({
file: this._opts.sourceMapTarget,
sourceRoot: this._opts.sourceRoot,
}));