make-mp-data 1.5.4 → 1.5.5

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/index.js +3 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1131,6 +1131,8 @@ async function sendToMixpanel(config, storage) {
1131
1131
  streamFormat: mpImportFormat
1132
1132
  };
1133
1133
 
1134
+ if (isCLI) commonOpts.showProgress = true;
1135
+
1134
1136
 
1135
1137
 
1136
1138
  if (eventData || isBATCH_MODE) {
@@ -1661,7 +1663,7 @@ if (NODE_ENV !== "prod") {
1661
1663
  bytes: bytesHuman(bytes || 0),
1662
1664
  };
1663
1665
  if (bytes > 0) console.table(stats);
1664
- log(`\nlog written to ${folder} ...`);
1666
+ log(`\nlog written to log.json\n`);
1665
1667
  writeFileSync(path.resolve(folder, "log.json"), JSON.stringify(data?.importResults, null, 2));
1666
1668
  // log(" " + files?.flat().join("\n "));
1667
1669
  log(`\n----------------SUMMARY-----------------\n\n\n`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "make-mp-data",
3
- "version": "1.5.04",
3
+ "version": "1.5.05",
4
4
  "description": "builds all mixpanel primitives for a given project",
5
5
  "main": "index.js",
6
6
  "types": "types.d.ts",