@@ -5,7 +5,6 @@ import parse5 from 'parse5'
5
5
import htmlMinifier from 'html-minifier'
6
6
import chalk from 'chalk'
7
7
import compilers from './compilers/index'
8
- import options from './options'
9
8
10
9
require ( 'es6-promise' ) . polyfill ( )
11
10
@@ -54,6 +53,12 @@ function checkLang (node) {
54
53
}
55
54
}
56
55
56
+ /**
57
+ * Pad content with empty lines to get correct line number in errors.
58
+ *
59
+ * @param content
60
+ * @returns {string }
61
+ */
57
62
function padContent ( content ) {
58
63
return content
59
64
. split ( / \r ? \n / g)
@@ -62,6 +67,9 @@ function padContent (content) {
62
67
}
63
68
64
69
export default class Compiler {
70
+ constructor ( options = { } ) {
71
+ this . options = options
72
+ }
65
73
compile ( content , filePath ) {
66
74
// 1. Parse the file into an HTML tree
67
75
const fragment = parseContent ( content )
@@ -104,7 +112,9 @@ export default class Compiler {
104
112
// TODO: Up next. ${node}, ${filePath}
105
113
return null
106
114
}
115
+
107
116
/**
117
+ * Compile template: DeIndent and minify html.
108
118
* @param {Node } node
109
119
* @param {string } filePath
110
120
* @param {string } content
@@ -124,7 +134,7 @@ export default class Compiler {
124
134
125
135
return this . compileAsPromise ( 'template' , template , lang , filePath )
126
136
. then ( function ( res ) {
127
- res . code = htmlMinifier . minify ( res . code , options . htmlMinifier )
137
+ res . code = htmlMinifier . minify ( res . code , this . options . htmlMinifier )
128
138
return res
129
139
} )
130
140
}
0 commit comments