This repository has been archived on 2020-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
|
'use strict'
|
|
const path = require('path')
|
|
module.exports = function getMapfile(options) {
|
|
if (options.map && typeof options.map.annotation === 'string') {
|
|
return `${path.dirname(options.to)}/${options.map.annotation}`
|
|
}
|
|
return `${options.to}.map`
|
|
}
|