make-mp-data 2.0.18 → 2.0.19
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/dungeons/complex.js +1 -1
- package/dungeons/sanity.js +1 -0
- package/dungeons/simple.js +1 -0
- package/lib/cli/cli.js +1 -1
- package/package.json +1 -1
package/dungeons/complex.js
CHANGED
package/dungeons/sanity.js
CHANGED
|
@@ -29,6 +29,7 @@ const config = {
|
|
|
29
29
|
hasSessionIds: false, //if true, hasSessionIds are created for each user
|
|
30
30
|
alsoInferFunnels: true, //if true, infer funnels from events
|
|
31
31
|
makeChart: true,
|
|
32
|
+
concurrency: 10,
|
|
32
33
|
funnels: [
|
|
33
34
|
{
|
|
34
35
|
sequence: ["qux", "garply", "durtle", "linny", "fonk", "crumn", "yak"],
|
package/dungeons/simple.js
CHANGED
package/lib/cli/cli.js
CHANGED
|
@@ -100,7 +100,7 @@ DATA MODEL: https://github.com/ak--47/make-mp-data/blob/main/default.js
|
|
|
100
100
|
})
|
|
101
101
|
.option('concurrency', {
|
|
102
102
|
alias: 'conn',
|
|
103
|
-
default:
|
|
103
|
+
default: 10,
|
|
104
104
|
demandOption: false,
|
|
105
105
|
describe: 'concurrency level for data generation',
|
|
106
106
|
type: 'number'
|