package css_printer

import "github.com/evanw/esbuild/internal/css_printer"

Index

Types

type Options

type Options struct {
	// This will be present if the input file had a source map. In that case we
	// want to map all the way back to the original input file(s).
	InputSourceMap *sourcemap.SourceMap

	// If we're writing out a source map, this table of line start indices lets
	// us do binary search on to figure out what line a given AST node came from
	LineOffsetTables []sourcemap.LineOffsetTable

	MinifyWhitespace  bool
	ASCIIOnly         bool
	AddSourceMappings bool
	LegalComments     config.LegalComments
}

type PrintResult

type PrintResult struct {
	CSS                    []byte
	ExtractedLegalComments map[string]bool
	SourceMapChunk         sourcemap.Chunk
}

func Print

func Print(tree css_ast.AST, options Options) PrintResult

Source Files

css_printer.go

Version
v0.14.40
Published
May 27, 2022
Platform
windows/amd64
Imports
9 packages
Last checked
2 minutes ago

Tools for package owners.