Skip to content

Commit abb1a48

Browse files
committedJun 4, 2019
chore(interfaces): minor modifications based on reviews
fixed few things based on the review
1 parent 5f0e96c commit abb1a48

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎packages/utils/scaffold.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import * as path from "path";
55
import { findProjectRoot } from "./path-utils";
66

77
import { Error } from "./types";
8-
import { Config, TransformConfig } from "./modify-config-helper";
8+
import { Config, TransformConfig } from "./types/Config";
99
import propTypes from "./prop-types";
1010
import astTransform from "./recursive-parser";
1111
import runPrettier from "./run-prettier";

‎packages/utils/types/Config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export interface Config extends Object {
44
};
55
topScope?: string[];
66
configName?: string;
7-
merge: object;
7+
merge: string | string[];
88
webpackOptions: object;
99
}
1010

0 commit comments

Comments
 (0)
Please sign in to comment.