Skip to content

Commit

Permalink
lint-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ijjk committed Feb 2, 2022
1 parent ce9a7c5 commit e1088c4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/create-next-app/helpers/install.ts
Expand Up @@ -69,7 +69,7 @@ export function install(
* install`.
*/
args = ['install']
if(!isOnline) {
if (!isOnline) {
console.log(chalk.yellow('You appear to be offline.'))
if (useYarn) {
console.log(chalk.yellow('Falling back to the local Yarn cache.'))
Expand Down
2 changes: 1 addition & 1 deletion packages/next-codemod/lib/install.ts
Expand Up @@ -69,7 +69,7 @@ export function install(
* install`.
*/
args = ['install']
if(!isOnline) {
if (!isOnline) {
console.log(chalk.yellow('You appear to be offline.'))
if (useYarn) {
console.log(chalk.yellow('Falling back to the local Yarn cache.'))
Expand Down
2 changes: 1 addition & 1 deletion packages/next/lib/helpers/install.ts
Expand Up @@ -69,7 +69,7 @@ export function install(
* install`.
*/
args = ['install']
if(!isOnline) {
if (!isOnline) {
console.log(chalk.yellow('You appear to be offline.'))
if (useYarn) {
console.log(chalk.yellow('Falling back to the local Yarn cache.'))
Expand Down

0 comments on commit e1088c4

Please sign in to comment.