Skip to content

Commit 083b895

Browse files
committed
fix(getNpmToken): fix flow error
1 parent a1b836d commit 083b895

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ node_modules
44
lib
55
es
66
.eslintcache
7-
/*.js
8-
/*.js.flow
7+
*.js
8+
*.js.flow
9+
!/src/**/*.js
10+
!/test/**/*.js
911
!/.babelrc.js

src/getNpmToken.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// @flow
22

33
import os from 'os'
4-
import fs from 'fs-extra'
4+
import * as fs from 'fs-extra'
55
import once from './util/once'
66

77
const getNpmToken = once(

0 commit comments

Comments
 (0)