@loadmill/executer 0.1.52 → 0.1.55

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 (44) hide show
  1. package/dist/parameter-pools.d.ts +3 -0
  2. package/dist/parameter-pools.js +69 -0
  3. package/dist/parameter-pools.js.map +1 -0
  4. package/dist/post-script/post-script-executor.d.ts +12 -2
  5. package/dist/post-script/post-script-executor.js +28 -6
  6. package/dist/post-script/post-script-executor.js.map +1 -1
  7. package/dist/sequence.d.ts +6 -1
  8. package/dist/sequence.js +51 -18
  9. package/dist/sequence.js.map +1 -1
  10. package/dist/single-runner.d.ts +1 -0
  11. package/dist/single-runner.js +4 -1
  12. package/dist/single-runner.js.map +1 -1
  13. package/package.json +3 -3
  14. package/src/asserter.ts +0 -137
  15. package/src/errors.ts +0 -10
  16. package/src/extraction-combiner.ts +0 -110
  17. package/src/failures.ts +0 -79
  18. package/src/message-creators.ts +0 -44
  19. package/src/mill-info.ts +0 -81
  20. package/src/mill-version.ts +0 -7
  21. package/src/post-script/ast-walker/index.ts +0 -160
  22. package/src/post-script/ast-walker/type-guard.ts +0 -73
  23. package/src/post-script/ast-walker/types.ts +0 -35
  24. package/src/post-script/console-log.ts +0 -24
  25. package/src/post-script/parser/acorn-js-parser.ts +0 -8
  26. package/src/post-script/parser/js-parser.ts +0 -22
  27. package/src/post-script/parser/parser.ts +0 -5
  28. package/src/post-script/post-script-executor.ts +0 -93
  29. package/src/post-script/virtual-machine/virtual-machine.ts +0 -15
  30. package/src/post-script/virtual-machine/vm2-virtual-machine.ts +0 -45
  31. package/src/report-types.ts +0 -127
  32. package/src/request-sequence-result.ts +0 -63
  33. package/src/request-stats.ts +0 -20
  34. package/src/res-keeper.ts +0 -53
  35. package/src/sampler.ts +0 -133
  36. package/src/sequence.ts +0 -1115
  37. package/src/single-runner.ts +0 -68
  38. package/src/test-run-event-emitter.ts +0 -25
  39. package/src/utils.ts +0 -8
  40. package/src/work.ts +0 -17
  41. package/src/ws.ts +0 -286
  42. package/test/post-script-console-log.spec.ts +0 -73
  43. package/test/post-script-executor.spec.ts +0 -685
  44. package/tsconfig.json +0 -9
package/tsconfig.json DELETED
@@ -1,9 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.json",
3
- "compilerOptions": {
4
- "noEmitHelpers": false,
5
- "outDir": "dist",
6
- "declaration": true,
7
- },
8
- "include": ["src/"]
9
- }