We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
info.json
1 parent 1666ada commit d1aba1fCopy full SHA for d1aba1f
src/index.ts
@@ -50,7 +50,10 @@ async function run() {
50
`${submodulePath} | Size: ${info.size} | Plugin: ${info.hasPlugin}`
51
);
52
53
- fs.promises.writeFile(infoFilePath, JSON.stringify(info, null, " "));
+ fs.promises.writeFile(
54
+ infoFilePath,
55
+ `${JSON.stringify(info, null, " ")}\n`
56
+ );
57
}
58
} catch (error) {
59
if (error instanceof Error) return core.setFailed(error.message);
0 commit comments