You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
messages.push(`The following new files will not be part of your published package:\n${util.joinList(newFiles.unpublished)}`);
97
+
messages.push(`The following new files will not be part of your published package:\n${util.joinList(newFiles.unpublished)}\n\nIf you intended to publish them, add them to the \`files\` field in package.json.`);
98
98
}
99
99
100
100
if(newFiles.firstTime.length>0){
101
-
messages.push(`The following new files will be published for the first time:\n${util.joinList(newFiles.firstTime)}`);
101
+
messages.push(`The following new files will be published for the first time:\n${util.joinList(newFiles.firstTime)}\n\nPlease make sure only the intended files are listed.`);
102
102
}
103
103
104
104
if(newDependencies.length>0){
105
-
messages.push(`The following new dependencies will be part of your published package:\n${util.joinList(newDependencies)}`);
105
+
messages.push(`The following new dependencies will be part of your published package:\n${util.joinList(newDependencies)}\n\nPlease make sure these new dependencies are intentional.`);
0 commit comments