make-mp-data 1.0.2 → 1.0.4

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 +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -11,7 +11,7 @@ const mp = require("mixpanel-import");
11
11
  const path = require("path");
12
12
  const Chance = require("chance");
13
13
  const chance = new Chance();
14
- const { touch, mkdir, comma, bytesHuman, mkdir } = require("ak-tools");
14
+ const { touch, comma, bytesHuman, mkdir } = require("ak-tools");
15
15
  const Papa = require("papaparse");
16
16
  const {
17
17
  integer,
@@ -53,7 +53,7 @@ if (suppliedConfig) {
53
53
  config = require(path.resolve(suppliedConfig));
54
54
  } else {
55
55
  console.log(`... using default configuration ...\n`);
56
- config = require(path.resolve("./default.js"));
56
+ config = require("./default.js");
57
57
  }
58
58
 
59
59
  //override config with cli params
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "make-mp-data",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "builds all mixpanel primitives for a given project",
5
5
  "main": "index.js",
6
6
  "scripts": {