File tree Expand file tree Collapse file tree 2 files changed +1
-8
lines changed
Expand file tree Collapse file tree 2 files changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -793,8 +793,7 @@ const CONTENTS_BANNER = "=== Contents ===";
793793* @returns Formatted string.
794794*/
795795function formatPublishResult(manifest, options, result) {
796- const lines = [];
797- lines.push(result.id === void 0 ? `🙅♀️ ${manifest.name}@${manifest.version} already published.` : `📦 ${result.id}`);
796+ const lines = [result.id === void 0 ? `🙅♀️ ${manifest.name}@${manifest.version} already published.` : `📦 ${result.id}`];
798797 if (result.files.length > 0) lines.push("", CONTENTS_BANNER);
799798 for (const { path: path$6, size } of result.files) lines.push(`${formatSize(size)}\t${path$6}`);
800799 return (options.dryRun.value ? [
Original file line number Diff line number Diff line change @@ -30,12 +30,6 @@ export default defineConfig(
3030 files : [ "**/*.js" ] ,
3131 extends : [ jsdoc . configs [ "flat/recommended-typescript-flavor-error" ] ] ,
3232 } ,
33- {
34- files : [ "**/__tests__/**" ] ,
35- rules : {
36- // "@typescript-eslint/no-unsafe-assignment": "off",
37- } ,
38- } ,
3933 {
4034 rules : {
4135 "jsdoc/tag-lines" : "off" ,
You can’t perform that action at this time.
0 commit comments