File tree Expand file tree Collapse file tree
Plugins/explicitDependencyImportCheckPlugin Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -60,13 +60,13 @@ extension ExplicitDependencyImportCheckPlugin {
6060 ) throws -> [ Command ] {
6161 guard !unusedDependencies. isEmpty else { return [ ] }
6262
63- var warningText = " warning: \( unusedDependencies. count) Unused dependencies found for \( target. name) ⚠️⚠️ \n "
64- warningText += unusedDependencies. map { " 👉 \( $0) is an unused depdnency " }
63+ var warningText = " warning: \( unusedDependencies. count) Extraneous dependencies found for \( target. name) ⚠️⚠️ \n "
64+ warningText += unusedDependencies. map { " 👉 \( $0) is an extraneous depdnency " }
6565 . joined ( separator: " \n " )
6666
6767 let echoTool = try context. tool ( named: " echo " )
6868 return [ . buildCommand(
69- displayName: " Unused Dependencies Report" ,
69+ displayName: " Extraneous Dependencies Report" ,
7070 executable: echoTool. path,
7171 arguments: [ warningText] ,
7272 environment: [ : ]
You can’t perform that action at this time.
0 commit comments