Skip to content

Commit

Permalink
fix: respect map.annotation string
Browse files Browse the repository at this point in the history
  • Loading branch information
keithamus committed Jan 8, 2020
1 parent 745ad2c commit d7ac29d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ function css(css, file) {
tasks.push(fs.outputFile(options.to, result.css))

if (result.map) {
const mapfile = getMapfile(options.to)
const mapfile = getMapfile(options)
tasks.push(fs.outputFile(mapfile, result.map))
}
} else process.stdout.write(result.css, 'utf8')
Expand Down
8 changes: 6 additions & 2 deletions lib/getMapfile.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
'use strict'
module.exports = function getMapfile(p) {
return `${p}.map`
const path = require('path')
module.exports = function getMapfile(options) {
if (options.map && typeof options.map.annotation === 'string') {
return path.join(path.dirname(options.to), options.map.annotation)
}
return `${options.to}.map`
}

0 comments on commit d7ac29d

Please sign in to comment.