make-mp-data 2.0.0 → 2.0.12

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 (45) hide show
  1. package/dungeons/adspend.js +96 -0
  2. package/dungeons/anon.js +104 -0
  3. package/dungeons/big.js +224 -0
  4. package/dungeons/business.js +327 -0
  5. package/dungeons/complex.js +396 -0
  6. package/dungeons/experiments.js +124 -0
  7. package/dungeons/foobar.js +241 -0
  8. package/dungeons/funnels.js +272 -0
  9. package/dungeons/gaming.js +315 -0
  10. package/dungeons/mirror.js +129 -0
  11. package/dungeons/sanity.js +118 -0
  12. package/dungeons/scd.js +205 -0
  13. package/dungeons/simple.js +150 -0
  14. package/dungeons/userAgent.js +190 -0
  15. package/index.js +5 -1
  16. package/lib/cli/cli.js +5 -1
  17. package/package.json +10 -1
  18. package/.claude/settings.local.json +0 -20
  19. package/.gcloudignore +0 -18
  20. package/.gitattributes +0 -2
  21. package/.prettierrc +0 -0
  22. package/.vscode/launch.json +0 -80
  23. package/.vscode/settings.json +0 -69
  24. package/.vscode/tasks.json +0 -12
  25. package/dungeons/customers/.gitkeep +0 -0
  26. package/env.yaml +0 -1
  27. package/scratch.mjs +0 -62
  28. package/scripts/dana.mjs +0 -137
  29. package/scripts/deploy.sh +0 -15
  30. package/scripts/jsdoctest.js +0 -5
  31. package/scripts/new-dungeon.sh +0 -98
  32. package/scripts/new-project.mjs +0 -14
  33. package/scripts/run-index.sh +0 -2
  34. package/scripts/update-deps.sh +0 -5
  35. package/tests/benchmark/concurrency.mjs +0 -52
  36. package/tests/cli.test.js +0 -124
  37. package/tests/coverage/.gitkeep +0 -0
  38. package/tests/e2e.test.js +0 -379
  39. package/tests/int.test.js +0 -715
  40. package/tests/testCases.mjs +0 -229
  41. package/tests/testSoup.mjs +0 -28
  42. package/tests/unit.test.js +0 -910
  43. package/tmp/.gitkeep +0 -0
  44. package/tsconfig.json +0 -18
  45. package/vitest.config.js +0 -47
package/tmp/.gitkeep DELETED
File without changes
package/tsconfig.json DELETED
@@ -1,18 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ES2020",
4
- "module": "CommonJS",
5
- "allowJs": true,
6
- "checkJs": true,
7
- "noEmit": true,
8
- "strict": false,
9
- "esModuleInterop": true,
10
- "resolveJsonModule": true
11
- },
12
- "include": [
13
- "**/*.js"
14
- , "soupTemplates.mjs", "tests/testSoup.mjs", "tests/testCases.mjs", "tests/benchmark/concurrency.mjs", "dungeons/customers/pos.mjs", "scripts/new-project.mjs", "scripts/dana.mjs" ],
15
- "exclude": [
16
- "node_modules"
17
- ]
18
- }
package/vitest.config.js DELETED
@@ -1,47 +0,0 @@
1
- import { defineConfig } from 'vitest/config';
2
-
3
- const isDebugMode = process.env.NODE_OPTIONS?.includes('--inspect') || process.env.NODE_OPTIONS?.includes('--inspect-brk');
4
-
5
- export default defineConfig({
6
- test: {
7
- // Global test settings
8
- globals: true,
9
- environment: 'node',
10
-
11
- // Test file patterns
12
- include: ['tests/**/*.test.js'],
13
-
14
- // Coverage settings
15
- coverage: {
16
- provider: 'v8',
17
- reporter: ['text', 'json', 'html'],
18
- reportsDirectory: './coverage'
19
- },
20
-
21
- // Test execution settings
22
- testTimeout: 60000, // one min
23
- hookTimeout: 30000,
24
- teardownTimeout: 10000,
25
-
26
- // Thread pool settings
27
- pool: 'threads',
28
- poolOptions: {
29
- threads: {
30
- maxThreads: 4,
31
- minThreads: 1
32
- }
33
- },
34
-
35
- // Reporter settings
36
- reporters: isDebugMode ? 'verbose' : 'default',
37
-
38
- // Don't watch in CI/test environments
39
- watch: false,
40
-
41
- // Allow mixed concurrent/sequential execution
42
- // CLI tests use describe.sequential() due to execSync collisions
43
- sequence: {
44
- concurrent: true
45
- }
46
- }
47
- });