@loadmill/executer 0.1.50 → 0.1.53

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 (46) hide show
  1. package/dist/extraction-combiner.js +6 -6
  2. package/dist/extraction-combiner.js.map +1 -1
  3. package/dist/mill-info.d.ts +4 -0
  4. package/dist/mill-version.js +1 -1
  5. package/dist/post-script/console-log.d.ts +7 -0
  6. package/dist/post-script/console-log.js +31 -0
  7. package/dist/post-script/console-log.js.map +1 -0
  8. package/dist/post-script/post-script-executor.js +7 -4
  9. package/dist/post-script/post-script-executor.js.map +1 -1
  10. package/dist/request-sequence-result.d.ts +1 -0
  11. package/dist/sequence.d.ts +1 -1
  12. package/dist/sequence.js +18 -8
  13. package/dist/sequence.js.map +1 -1
  14. package/dist/single-runner.d.ts +1 -0
  15. package/dist/single-runner.js +1 -1
  16. package/dist/single-runner.js.map +1 -1
  17. package/package.json +3 -3
  18. package/src/asserter.ts +0 -137
  19. package/src/errors.ts +0 -10
  20. package/src/extraction-combiner.ts +0 -110
  21. package/src/failures.ts +0 -79
  22. package/src/message-creators.ts +0 -44
  23. package/src/mill-info.ts +0 -76
  24. package/src/mill-version.ts +0 -7
  25. package/src/post-script/ast-walker/index.ts +0 -160
  26. package/src/post-script/ast-walker/type-guard.ts +0 -73
  27. package/src/post-script/ast-walker/types.ts +0 -35
  28. package/src/post-script/parser/acorn-js-parser.ts +0 -8
  29. package/src/post-script/parser/js-parser.ts +0 -22
  30. package/src/post-script/parser/parser.ts +0 -5
  31. package/src/post-script/post-script-executor.ts +0 -89
  32. package/src/post-script/virtual-machine/virtual-machine.ts +0 -15
  33. package/src/post-script/virtual-machine/vm2-virtual-machine.ts +0 -45
  34. package/src/report-types.ts +0 -127
  35. package/src/request-sequence-result.ts +0 -63
  36. package/src/request-stats.ts +0 -20
  37. package/src/res-keeper.ts +0 -53
  38. package/src/sampler.ts +0 -133
  39. package/src/sequence.ts +0 -1107
  40. package/src/single-runner.ts +0 -66
  41. package/src/test-run-event-emitter.ts +0 -25
  42. package/src/utils.ts +0 -8
  43. package/src/work.ts +0 -17
  44. package/src/ws.ts +0 -286
  45. package/test/post-script-executor.spec.ts +0 -677
  46. 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
- }