Options
All
  • Public
  • Public/Protected
  • All
Menu

Source map information from input CSS. For example, source map after Sass compiler.

This class will automatically find source map in input CSS or in file system near input file (according from option).

const root = parse(css, { from: 'a.sass.css' })
root.input.map //=> PreviousMap

Hierarchy

  • PreviousMap_

Index

Constructors

Properties

annotation?: string

sourceMappingURL content.

file?: string

The CSS source identifier. Contains Input#file if the user set the from option, or Input#id if they did not.

inline: boolean

Was source map inlined by data-uri to input CSS.

mapFile?: string

Path to source map file.

root?: string

The directory with source map file, if source map is in separated file.

text?: string

Source map file content.

Methods

  • Create a instance of SourceMapGenerator class from the source-map library to work with source map information.

    It is lazy method, so it will create object only on first call and then it will use cache.

    Returns SourceMapConsumer

    Object with source map information.

  • withContent(): boolean
  • Does source map contains sourcesContent with input source text.

    Returns boolean

    Is sourcesContent present.