(
public options: IDevelopOptions,
transformer?: Transformer,
)
| 153 | } | null = null; |
| 154 | |
| 155 | constructor( |
| 156 | public options: IDevelopOptions, |
| 157 | transformer?: Transformer, |
| 158 | ) { |
| 159 | this.transformer = transformer || new Transformer(); |
| 160 | this.html = this._buildHtml(); |
| 161 | this.disposeList.push(() => { |
| 162 | this.watcher?.close(); |
| 163 | }); |
| 164 | } |
| 165 | |
| 166 | private _buildHtml() { |
| 167 | const otherAssets = mergeAssets( |
nothing calls this directly
no test coverage detected