forked from rDrama/rDrama
1
0
Fork 0
rDrama/node_modules/postcss-cli/lib/getMapfile.js

8 lines
239 B
JavaScript

import path from 'path'
export default function getMapfile(options) {
if (options.map && typeof options.map.annotation === 'string') {
return `${path.dirname(options.to)}/${options.map.annotation}`
}
return `${options.to}.map`
}