Skip to content
This repository was archived by the owner on Jan 18, 2022. It is now read-only.

Commit a892b55

Browse files
committed
Extend default options with given options
Fixes #6
2 parents fcb1999 + 8a1c7d4 commit a892b55

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

src/compiler.js

+12-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import parse5 from 'parse5'
55
import htmlMinifier from 'html-minifier'
66
import chalk from 'chalk'
77
import compilers from './compilers/index'
8-
import options from './options'
98

109
require('es6-promise').polyfill()
1110

@@ -54,6 +53,12 @@ function checkLang (node) {
5453
}
5554
}
5655

56+
/**
57+
* Pad content with empty lines to get correct line number in errors.
58+
*
59+
* @param content
60+
* @returns {string}
61+
*/
5762
function padContent (content) {
5863
return content
5964
.split(/\r?\n/g)
@@ -62,6 +67,9 @@ function padContent (content) {
6267
}
6368

6469
export default class Compiler {
70+
constructor (options = {}) {
71+
this.options = options
72+
}
6573
compile (content, filePath) {
6674
// 1. Parse the file into an HTML tree
6775
const fragment = parseContent(content)
@@ -104,7 +112,9 @@ export default class Compiler {
104112
// TODO: Up next. ${node}, ${filePath}
105113
return null
106114
}
115+
107116
/**
117+
* Compile template: DeIndent and minify html.
108118
* @param {Node} node
109119
* @param {string} filePath
110120
* @param {string} content
@@ -124,7 +134,7 @@ export default class Compiler {
124134

125135
return this.compileAsPromise('template', template, lang, filePath)
126136
.then(function (res) {
127-
res.code = htmlMinifier.minify(res.code, options.htmlMinifier)
137+
res.code = htmlMinifier.minify(res.code, this.options.htmlMinifier)
128138
return res
129139
})
130140
}

src/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import {createFilter} from 'rollup-pluginutils'
22
import Compiler from './compiler'
33
import objectAssign from 'object-assign'
44
import path from 'path'
5-
const compiler = new Compiler()
65

76
export default function plugin (options = {}) {
87
options = objectAssign({}, options, {extensions: ['.vue'] })
@@ -12,6 +11,8 @@ export default function plugin (options = {}) {
1211
delete options.include
1312
delete options.exclude
1413

14+
const compiler = new Compiler(options)
15+
1516
return {
1617
transform (code, id) {
1718
if (!filter(id)) return null

src/options.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import fs from 'fs'
22
import path from 'path'
3+
34
let defaultBabelOptions = {
45
presets: ['es2015-rollup']
56
}

0 commit comments

Comments
 (0)