Skip to content

Commit

Permalink
chore(interfaces): minor modifications based on reviews
Browse files Browse the repository at this point in the history
fixed few things based on the review
  • Loading branch information
pranshuchittora committed Jun 4, 2019
1 parent 5f0e96c commit abb1a48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/utils/scaffold.ts
Expand Up @@ -5,7 +5,7 @@ import * as path from "path";
import { findProjectRoot } from "./path-utils";

import { Error } from "./types";
import { Config, TransformConfig } from "./modify-config-helper";
import { Config, TransformConfig } from "./types/Config";
import propTypes from "./prop-types";
import astTransform from "./recursive-parser";
import runPrettier from "./run-prettier";
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/types/Config.ts
Expand Up @@ -4,7 +4,7 @@ export interface Config extends Object {
};
topScope?: string[];
configName?: string;
merge: object;
merge: string | string[];
webpackOptions: object;
}

Expand Down

0 comments on commit abb1a48

Please sign in to comment.