Skip to content

Commit f2cd853

Browse files
authored
Merge pull request #2550 from StoDevX/greenkeeper/prettier-1.12.1
Greenkeeper/prettier 1.12.1
2 parents e0bf32e + 83c030b commit f2cd853

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

dangerfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ async function runAndroid() {
6262
return
6363
}
6464

65-
if (!await didNativeDependencyChange()) {
65+
if (!(await didNativeDependencyChange())) {
6666
// nothing changed to make this worth analyzing
6767
return
6868
}
@@ -84,7 +84,7 @@ async function runiOS() {
8484
return
8585
}
8686

87-
if (!await didNativeDependencyChange()) {
87+
if (!(await didNativeDependencyChange())) {
8888
// nothing changed to make this worth analyzing
8989
return
9090
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@
169169
"minimist": "1.2.0",
170170
"mkdirp": "0.5.1",
171171
"pify": "3.0.0",
172-
"prettier": "1.11.1",
172+
"prettier": "1.12.1",
173173
"pretty-bytes": "4.0.2",
174174
"pretty-quick": "1.4.1",
175175
"prop-types": "15.6.1",

source/user-agent.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ const aaoVersion = version || 'unknown'
77
const platformString =
88
Platform.OS === 'ios'
99
? 'iOS'
10-
: Platform.OS === 'android' ? 'Android' : 'unknown'
10+
: Platform.OS === 'android'
11+
? 'Android'
12+
: 'unknown'
1113
const platformVersion = Platform.Version || 'unknown'
1214

1315
export const AAO_USER_AGENT = `AllAboutOlaf/${aaoVersion} (${platformString}/${platformVersion})`

source/views/settings/components/login-button.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ export function LoginButton({
2424
title={
2525
loading
2626
? `Logging in to ${label}…`
27-
: loggedIn ? `Sign Out of ${label}` : `Sign In to ${label}`
27+
: loggedIn
28+
? `Sign Out of ${label}`
29+
: `Sign In to ${label}`
2830
}
2931
/>
3032
)

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5026,9 +5026,9 @@ preserve@^0.2.0:
50265026
version "0.2.0"
50275027
resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
50285028

5029-
prettier@1.11.1:
5030-
version "1.11.1"
5031-
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.11.1.tgz#61e43fc4cd44e68f2b0dfc2c38cd4bb0fccdcc75"
5029+
prettier@1.12.1:
5030+
version "1.12.1"
5031+
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.12.1.tgz#c1ad20e803e7749faf905a409d2367e06bbe7325"
50325032

50335033
50345034
version "4.0.2"

0 commit comments

Comments
 (0)