Skip to content
This repository was archived by the owner on May 17, 2019. It is now read-only.

Commit 457d5da

Browse files
authored
Fix flow types (#79)
1 parent deb8a75 commit 457d5da

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,17 @@
3737
"eslint-plugin-react": "7.6.1",
3838
"flow-bin": "0.65.0",
3939
"fusion-core": "^1.0.0",
40-
"fusion-plugin-universal-events": "^1.0.0",
41-
"fusion-test-utils": "^1.0.0",
42-
"fusion-tokens": "^1.0.0",
40+
"fusion-plugin-universal-events": "^1.0.1",
41+
"fusion-test-utils": "^1.0.1",
42+
"fusion-tokens": "^1.0.1",
4343
"nyc": "11.4.1",
4444
"prettier": "1.10.2",
4545
"tape-cup": "4.7.1",
4646
"unitest": "2.1.1"
4747
},
4848
"peerDependencies": {
4949
"fusion-core": "^1.0.0",
50-
"fusion-tokens": "^1.0.0"
50+
"fusion-tokens": "^1.0.1"
5151
},
5252
"scripts": {
5353
"clean": "rm -rf dist",

src/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import ServerLogger from './server.js';
99
import BrowserLogger from './browser.js';
1010

11+
declare var __BROWSER__: Boolean;
1112
const UniversalLogger = __BROWSER__ ? BrowserLogger : ServerLogger;
1213

1314
export default UniversalLogger;

yarn.lock

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2273,23 +2273,23 @@ fusion-core@^1.0.0:
22732273
node-mocks-http "^1.6.6"
22742274
toposort "^1.0.6"
22752275

2276-
fusion-plugin-universal-events@^1.0.0:
2277-
version "1.0.0"
2278-
resolved "https://registry.yarnpkg.com/fusion-plugin-universal-events/-/fusion-plugin-universal-events-1.0.0.tgz#5f2a058078f7a3ab7c9eb7feb1d588fc4f2cbfb4"
2276+
fusion-plugin-universal-events@^1.0.1:
2277+
version "1.0.1"
2278+
resolved "https://registry.yarnpkg.com/fusion-plugin-universal-events/-/fusion-plugin-universal-events-1.0.1.tgz#3bc31b6450212a1a973a7f9674a6d28b0995eac8"
22792279
dependencies:
22802280
koa-bodyparser "4.2.0"
22812281

2282-
fusion-test-utils@^1.0.0:
2283-
version "1.0.0"
2284-
resolved "https://registry.yarnpkg.com/fusion-test-utils/-/fusion-test-utils-1.0.0.tgz#f3ef434aff74186a77837828b84e2b50b524218f"
2282+
fusion-test-utils@^1.0.1:
2283+
version "1.0.1"
2284+
resolved "https://registry.yarnpkg.com/fusion-test-utils/-/fusion-test-utils-1.0.1.tgz#9ff6b0747ddacf0b89d101b325885cd6fbecd59b"
22852285
dependencies:
22862286
assert "^1.4.1"
22872287
koa "^2.4.1"
22882288
node-mocks-http "^1.6.6"
22892289

2290-
fusion-tokens@^1.0.0:
2291-
version "1.0.0"
2292-
resolved "https://registry.yarnpkg.com/fusion-tokens/-/fusion-tokens-1.0.0.tgz#84ce2755ef444259a63b6287d6b279c48e5f4f62"
2290+
fusion-tokens@^1.0.1:
2291+
version "1.0.1"
2292+
resolved "https://registry.yarnpkg.com/fusion-tokens/-/fusion-tokens-1.0.1.tgz#b2ef62f515c1a314c7d2590a6e7caf5dca737cc4"
22932293

22942294
gauge@~2.7.3:
22952295
version "2.7.4"

0 commit comments

Comments
 (0)