File tree 1 file changed +3
-3
lines changed
packages/nx/src/migrations/update-17-0-0 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { formatChangedFilesWithPrettierIfAvailable } from '../../generators/inte
2
2
import { Tree } from '../../generators/tree' ;
3
3
import { readNxJson , updateNxJson } from '../../generators/utils/nx-json' ;
4
4
import { readJson } from '../../generators/utils/json' ;
5
- import { logger } from '../../utils/logger ' ;
5
+ import { output } from '../../utils/output ' ;
6
6
import { NxJsonConfiguration } from '../../config/nx-json' ;
7
7
import { joinPathFragments } from '../../utils/path' ;
8
8
@@ -54,7 +54,7 @@ function warnNpmScopeHasChanged(
54
54
const packageJsonName = readJson ( tree , 'package.json' ) . name ;
55
55
56
56
if ( newScope ) {
57
- logger . warn ( {
57
+ output . warn ( {
58
58
title : 'npmScope has been removed from nx.json' ,
59
59
bodyLines : [
60
60
'This will now be read from package.json' ,
@@ -69,7 +69,7 @@ function warnNpmScopeHasChanged(
69
69
} ) ;
70
70
} else {
71
71
// There is no scope in package.json
72
- logger . warn ( {
72
+ output . warn ( {
73
73
title : 'npmScope has been removed from nx.json' ,
74
74
bodyLines : [
75
75
'This will now be read from package.json' ,
You can’t perform that action at this time.
0 commit comments