Skip to content

Commit d51be8c

Browse files
committed
and outputPath option
1 parent 3f40f57 commit d51be8c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/renderer/factory.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ function rendererFactory(basePath: string, vOptions: Object): Renderer {
3131
basePath: path.resolve(basePath),
3232
watch: options.watch,
3333
global: options.global,
34+
outputPath: options.outputPath,
3435
};
3536
const compiler = new Compiler(mfs, compilerOptions);
3637

src/type.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ export type CompilerOptions = {
55
config: Object,
66
basePath: string,
77
watch: boolean,
8-
global: Object
8+
global: Object,
9+
outputPath: string
910
};
1011

1112
export interface ICompiler {

0 commit comments

Comments
 (0)