Skip to content

Commit

Permalink
fix: change npm first
Browse files Browse the repository at this point in the history
  • Loading branch information
yzStrive committed Sep 20, 2020
1 parent 6475e55 commit 9725f6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export function resolveConfig(
packageFile: 'package.json',
packageKey: 'fbi',
organization: 'https://github.com/fbi-js',
packageManager: env.hasPnpm ? 'pnpm' : env.hasYarn ? 'yarn' : env.hasNpm ? 'npm' : ''
packageManager: env.hasNpm ? 'npm' : env.hasYarn ? 'yarn' : env.hasPnpm ? 'pnpm' : ''
}
const globalConfig = configStore.get()
const baseConfig = merge(config, globalConfig)
Expand Down

0 comments on commit 9725f6f

Please sign in to comment.