Files
fte-Homepage/node_modules/postcss-cli/lib/getMapfile.js
root 06acaecee1 .
2023-07-30 22:05:51 +02:00

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`
}