Skip to content

Commit 8832c0e

Browse files
committed
fmt
1 parent 003d1f9 commit 8832c0e

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"main": "lib/index.js",
66
"scripts": {
77
"build": "make build",
8-
"prepublish": "npm run build",
8+
"prepublish": "make build",
99
"flow": "flow check"
1010
},
1111
"publishConfig": {

src/components/core/theme-provider/theme-data.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ export function renderLineItemImage(lineItem: LineItem): Element<*> {
88

99
export type ThemeData = {
1010
renderLineItemImage(lineItem: LineItem): Element<*>,
11-
};
11+
};

src/components/core/theme-provider/theme-provider.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { PropTypes, Component } from 'react';
22

33
import * as themeData from './theme-data';
44

5-
type ContextType = {[key: string]: any};
5+
type ContextType = { [key: string]: any };
66

77
type Props = {
88
context?: ContextType,
@@ -42,4 +42,4 @@ class ThemeProvider extends Component {
4242
}
4343
}
4444

45-
export default ThemeProvider;
45+
export default ThemeProvider;

0 commit comments

Comments
 (0)