Skip to content

Commit 60aad90

Browse files
committed
[AUTOMATED]: Prettier Code Styling
1 parent 1af71dd commit 60aad90

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

packages-exp/auth-compat-exp/rollup.config.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,13 @@ const es5Builds = [
5959
*/
6060
{
6161
input: 'index.rn.ts',
62-
output: [{ file: pkg['react-native'], format: 'cjs', sourcemap: true }],
62+
output: [{ file: pkg['react-native'], format: 'cjs', sourcemap: true }],
6363
plugins: es5BuildPlugins,
64-
external: id => [...deps, 'react-native'].some(dep => id === dep || id.startsWith(`${dep}/`))
65-
},
64+
external: id =>
65+
[...deps, 'react-native'].some(
66+
dep => id === dep || id.startsWith(`${dep}/`)
67+
)
68+
}
6669
];
6770

6871
/**

packages-exp/auth-exp/src/core/auth/auth_impl.test.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@ import { browserLocalPersistence } from '../persistence/browser';
2929
import { inMemoryPersistence } from '../persistence/in_memory';
3030
import { PersistenceUserManager } from '../persistence/persistence_user_manager';
3131
import { ClientPlatform, getClientVersion } from '../util/version';
32-
import { DEFAULT_API_HOST, DEFAULT_API_SCHEME, initializeAuth } from './auth_impl';
32+
import {
33+
DEFAULT_API_HOST,
34+
DEFAULT_API_SCHEME,
35+
initializeAuth
36+
} from './auth_impl';
3337

3438
use(sinonChai);
3539

0 commit comments

Comments
 (0)