@putout/formatter-memory 3.1.1 → 3.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/memory.js +1 -2
  2. package/package.json +1 -1
package/lib/memory.js CHANGED
@@ -128,9 +128,8 @@ function getInfo(memory) {
128
128
  return montag`
129
129
  heap used: ${green(heapUsed)}
130
130
  heap total: ${yellow(heapTotal)}
131
- rss: ${red(rss)},
131
+ rss: ${red(rss)}
132
132
  time: ${blueBright(calcTime())}
133
-
134
133
  `;
135
134
  }
136
135
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@putout/formatter-memory",
3
- "version": "3.1.1",
3
+ "version": "3.1.2",
4
4
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
5
5
  "description": "🐊Putout formatter shows memory usage",
6
6
  "homepage": "https://github.com/coderaiser/putout/tree/master/packages/formatter-memory#readme",