-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
43 lines (37 loc) · 1.12 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
const Processor = require('./src/Processor')
const loaderUtils = require('loader-utils')
const validateOptions = require('schema-utils')
const optionSchema = require('./src/options.json')
module.exports = async function RemarkVueLoader (source, map, meta) {
// default loader options
const defaultOptions = {
context: this.rootContext,
cache: true,
components: [],
transformers: [],
watchFiles: [],
preprocess: source => source,
beforetransform: (ast, api) => {},
aftertransform: (ast, api) => {},
postprocess: sfc => sfc
}
const options = Object.assign({}, defaultOptions, loaderUtils.getOptions(this))
validateOptions(optionSchema, options, {
name: 'remark-vue-loader',
baseDataPath: 'options'
})
options.cache && this.cacheable(Boolean(options.cache))
const callback = this.async()
const processor = new Processor({
source,
loader: this,
options: options
})
try {
const result = await processor.run()
callback(null, result, map, meta)
} catch (err) {
const error = typeof err === 'string' ? new Error(err) : err
callback(error, source)
}
}