305883a12f
* build(deps-dev): bump typescript from 4.3.5 to 4.4.2 Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.3.5 to 4.4.2. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Commits](https://github.com/Microsoft/TypeScript/compare/v4.3.5...v4.4.2) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * build(deps-dev): bump typescript from 4.3.5 to 4.4.2 * test: fix nodeOps types Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Carlos Rodrigues <carlos@hypermob.co.uk> Co-authored-by: Evan You <yyx990803@gmail.com>
143 lines
3.4 KiB
TypeScript
143 lines
3.4 KiB
TypeScript
import merge from 'merge-source-map'
|
|
import { RawSourceMap } from 'source-map'
|
|
import { SFCStyleCompileOptions } from './compileStyle'
|
|
import { isFunction } from '@vue/shared'
|
|
|
|
export type StylePreprocessor = (
|
|
source: string,
|
|
map: RawSourceMap | undefined,
|
|
options: {
|
|
[key: string]: any
|
|
additionalData?: string | ((source: string, filename: string) => string)
|
|
filename: string
|
|
},
|
|
customRequire: SFCStyleCompileOptions['preprocessCustomRequire']
|
|
) => StylePreprocessorResults
|
|
|
|
export interface StylePreprocessorResults {
|
|
code: string
|
|
map?: object
|
|
errors: Error[]
|
|
dependencies: string[]
|
|
}
|
|
|
|
// .scss/.sass processor
|
|
const scss: StylePreprocessor = (source, map, options, load = require) => {
|
|
const nodeSass = load('sass')
|
|
const finalOptions = {
|
|
...options,
|
|
data: getSource(source, options.filename, options.additionalData),
|
|
file: options.filename,
|
|
outFile: options.filename,
|
|
sourceMap: !!map
|
|
}
|
|
|
|
try {
|
|
const result = nodeSass.renderSync(finalOptions)
|
|
const dependencies = result.stats.includedFiles
|
|
if (map) {
|
|
return {
|
|
code: result.css.toString(),
|
|
map: merge(map, JSON.parse(result.map.toString())),
|
|
errors: [],
|
|
dependencies
|
|
}
|
|
}
|
|
|
|
return { code: result.css.toString(), errors: [], dependencies }
|
|
} catch (e: any) {
|
|
return { code: '', errors: [e], dependencies: [] }
|
|
}
|
|
}
|
|
|
|
const sass: StylePreprocessor = (source, map, options, load) =>
|
|
scss(
|
|
source,
|
|
map,
|
|
{
|
|
...options,
|
|
indentedSyntax: true
|
|
},
|
|
load
|
|
)
|
|
|
|
// .less
|
|
const less: StylePreprocessor = (source, map, options, load = require) => {
|
|
const nodeLess = load('less')
|
|
|
|
let result: any
|
|
let error: Error | null = null
|
|
nodeLess.render(
|
|
getSource(source, options.filename, options.additionalData),
|
|
{ ...options, syncImport: true },
|
|
(err: Error | null, output: any) => {
|
|
error = err
|
|
result = output
|
|
}
|
|
)
|
|
|
|
if (error) return { code: '', errors: [error], dependencies: [] }
|
|
const dependencies = result.imports
|
|
if (map) {
|
|
return {
|
|
code: result.css.toString(),
|
|
map: merge(map, result.map),
|
|
errors: [],
|
|
dependencies: dependencies
|
|
}
|
|
}
|
|
|
|
return {
|
|
code: result.css.toString(),
|
|
errors: [],
|
|
dependencies: dependencies
|
|
}
|
|
}
|
|
|
|
// .styl
|
|
const styl: StylePreprocessor = (source, map, options, load = require) => {
|
|
const nodeStylus = load('stylus')
|
|
try {
|
|
const ref = nodeStylus(source)
|
|
Object.keys(options).forEach(key => ref.set(key, options[key]))
|
|
if (map) ref.set('sourcemap', { inline: false, comment: false })
|
|
|
|
const result = ref.render()
|
|
const dependencies = ref.deps()
|
|
if (map) {
|
|
return {
|
|
code: result,
|
|
map: merge(map, ref.sourcemap),
|
|
errors: [],
|
|
dependencies
|
|
}
|
|
}
|
|
|
|
return { code: result, errors: [], dependencies }
|
|
} catch (e: any) {
|
|
return { code: '', errors: [e], dependencies: [] }
|
|
}
|
|
}
|
|
|
|
function getSource(
|
|
source: string,
|
|
filename: string,
|
|
additionalData?: string | ((source: string, filename: string) => string)
|
|
) {
|
|
if (!additionalData) return source
|
|
if (isFunction(additionalData)) {
|
|
return additionalData(source, filename)
|
|
}
|
|
return additionalData + source
|
|
}
|
|
|
|
export type PreprocessLang = 'less' | 'sass' | 'scss' | 'styl' | 'stylus'
|
|
|
|
export const processors: Record<PreprocessLang, StylePreprocessor> = {
|
|
less,
|
|
sass,
|
|
scss,
|
|
styl,
|
|
stylus: styl
|
|
}
|