Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
style: fix extra spaces caused by formatter
  • Loading branch information
yume-chan committed Feb 5, 2018
commit a909b9d921ec69b99f1b8d6c42a4dd32a3e8dc72
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ const validate = ajv.compile(optionsSchema);
export default ({
types: t
}: {
types: BabelTypes
}) => {
types: BabelTypes
}) => {
const filenameMap = {};

const setupFileForRuntimeResolution = (path, filename) => {
Expand Down
4 changes: 2 additions & 2 deletions src/resolveStringLiteral.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ import conditionalClassMerge from './conditionalClassMerge';
import getClassName from './getClassName';
import type {
StyleModuleImportMapType,
HandleMissingStyleNameOptionType
HandleMissingStyleNameOptionType
} from './types';

type OptionsType = {|
handleMissingStyleName: HandleMissingStyleNameOptionType
|};
|};

/**
* Updates the className value of a JSX element using a provided styleName attribute.
Expand Down