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
// Only prompt for first-time files and new dependencies (things that WILL be published)
88
+
if(noNewFirstTimeFiles&&noNewDependencies){
89
+
return{
90
+
confirmed: true,
91
+
unpublishedFiles: newFiles.unpublished||[],
92
+
};
92
93
}
93
94
94
95
constmessages=[];
95
-
if(newFiles.unpublished.length>0){
96
-
messages.push(`The following new files will not be part of your published package:\n${util.groupFilesInFolders(newFiles.unpublished)}\n\nIf you intended to publish them, add them to the \`files\` field in package.json.`);
97
-
}
98
-
99
96
if(newFiles.firstTime.length>0){
100
97
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.`);
0 commit comments