hytopia 0.3.23 → 0.3.24
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.
- package/bin/scripts.js +1 -1
- package/package.json +1 -1
package/bin/scripts.js
CHANGED
@@ -259,7 +259,7 @@ function packageProject() {
|
|
259
259
|
|
260
260
|
// Listen for all archive data to be written
|
261
261
|
output.on('close', function() {
|
262
|
-
console.log(`✅ Project packaged successfully! (${archive.pointer()
|
262
|
+
console.log(`✅ Project packaged successfully! (${(archive.pointer() / 1024 / 1024).toFixed(2)} MB)`);
|
263
263
|
console.log(`📁 Package saved to: ${outputFile}`);
|
264
264
|
});
|
265
265
|
|