Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improve sourcemap performance #1881

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
33 changes: 27 additions & 6 deletions lib/map-generator.js
Expand Up @@ -17,6 +17,10 @@ class MapGenerator {
this.opts = opts
this.css = cssString
this.usesFileUrls = !this.mapOpts.from && this.mapOpts.absolute

this.memoizedFileURLs = new Map()
this.memoizedPaths = new Map()
this.memoizedURLs = new Map()
}

addAnnotation() {
Expand Down Expand Up @@ -241,18 +245,22 @@ class MapGenerator {
}

path(file) {
if (file.indexOf('<') === 0) return file
ai marked this conversation as resolved.
Show resolved Hide resolved
if (/^\w+:\/\//.test(file)) return file
if (this.mapOpts.absolute) return file
if (file.charCodeAt(0) === 60 /* `<` */) return file
if (/^\w+:\/\//.test(file)) return file
let cached = this.memoizedPaths.get(file)
if (cached) return cached

let from = this.opts.to ? dirname(this.opts.to) : '.'

if (typeof this.mapOpts.annotation === 'string') {
from = dirname(resolve(from, this.mapOpts.annotation))
}

file = relative(from, file)
return file
let path = relative(from, file)
this.memoizedPaths.set(file, path)

return path
}

previous() {
Expand Down Expand Up @@ -318,8 +326,14 @@ class MapGenerator {
}

toFileUrl(path) {
let cached = this.memoizedFileURLs.get(path)
if (cached) return cached

if (pathToFileURL) {
return pathToFileURL(path).toString()
let fileURL = pathToFileURL(path).toString()
this.memoizedFileURLs.set(path, fileURL)

return fileURL
} else {
throw new Error(
'`map.absolute` option is not available in this PostCSS build'
Expand All @@ -328,10 +342,17 @@ class MapGenerator {
}

toUrl(path) {
let cached = this.memoizedURLs.get(path)
if (cached) return cached

if (sep === '\\') {
path = path.replace(/\\/g, '/')
}
return encodeURI(path).replace(/[#?]/g, encodeURIComponent)

let url = encodeURI(path).replace(/[#?]/g, encodeURIComponent)
this.memoizedURLs.set(path, url)

return url
}
}

Expand Down