@trevonistrevon/pi-loop 0.5.4 → 0.5.6

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 (101) hide show
  1. package/coverage/base.css +224 -0
  2. package/coverage/block-navigation.js +87 -0
  3. package/coverage/coverage-final.json +32 -0
  4. package/coverage/favicon.png +0 -0
  5. package/coverage/index.html +176 -0
  6. package/coverage/prettify.css +1 -0
  7. package/coverage/prettify.js +2 -0
  8. package/coverage/sort-arrow-sprite.png +0 -0
  9. package/coverage/sorter.js +210 -0
  10. package/coverage/src/commands/index.html +131 -0
  11. package/coverage/src/commands/loop-command.ts.html +634 -0
  12. package/coverage/src/commands/tasks-command.ts.html +490 -0
  13. package/coverage/src/coordinator.ts.html +430 -0
  14. package/coverage/src/goal-coordinator.ts.html +259 -0
  15. package/coverage/src/goal-reducer.ts.html +982 -0
  16. package/coverage/src/goal-store.ts.html +742 -0
  17. package/coverage/src/goal-verifier.ts.html +808 -0
  18. package/coverage/src/index.html +386 -0
  19. package/coverage/src/index.ts.html +1063 -0
  20. package/coverage/src/loop-parse.ts.html +574 -0
  21. package/coverage/src/loop-reducer.ts.html +559 -0
  22. package/coverage/src/monitor-completion-coordinator.ts.html +157 -0
  23. package/coverage/src/monitor-manager.ts.html +934 -0
  24. package/coverage/src/monitor-reducer.ts.html +583 -0
  25. package/coverage/src/notification-reducer.ts.html +550 -0
  26. package/coverage/src/reducer-backed-store.ts.html +589 -0
  27. package/coverage/src/runtime/index.html +191 -0
  28. package/coverage/src/runtime/monitor-ondone-runtime.ts.html +310 -0
  29. package/coverage/src/runtime/notification-runtime.ts.html +721 -0
  30. package/coverage/src/runtime/scope.ts.html +196 -0
  31. package/coverage/src/runtime/session-runtime.ts.html +589 -0
  32. package/coverage/src/runtime/task-backlog-runtime.ts.html +574 -0
  33. package/coverage/src/runtime/task-rpc.ts.html +535 -0
  34. package/coverage/src/scheduler.ts.html +400 -0
  35. package/coverage/src/store.ts.html +667 -0
  36. package/coverage/src/task-backlog-coordinator.ts.html +181 -0
  37. package/coverage/src/task-reducer.ts.html +550 -0
  38. package/coverage/src/task-store.ts.html +526 -0
  39. package/coverage/src/tools/index.html +146 -0
  40. package/coverage/src/tools/loop-tools.ts.html +1000 -0
  41. package/coverage/src/tools/monitor-tools.ts.html +547 -0
  42. package/coverage/src/tools/native-task-tools.ts.html +535 -0
  43. package/coverage/src/trigger-system.ts.html +547 -0
  44. package/coverage/src/ui/index.html +116 -0
  45. package/coverage/src/ui/widget.ts.html +292 -0
  46. package/dist/goal-reducer.d.ts +9 -0
  47. package/dist/goal-reducer.js +11 -2
  48. package/dist/goal-store.d.ts +4 -15
  49. package/dist/goal-store.js +32 -155
  50. package/dist/index.js +5 -1
  51. package/dist/loop-reducer.d.ts +7 -0
  52. package/dist/loop-reducer.js +9 -0
  53. package/dist/monitor-manager.d.ts +9 -0
  54. package/dist/monitor-manager.js +33 -12
  55. package/dist/reducer-backed-store.d.ts +65 -0
  56. package/dist/reducer-backed-store.js +160 -0
  57. package/dist/store.d.ts +4 -16
  58. package/dist/store.js +25 -157
  59. package/dist/task-reducer.js +3 -0
  60. package/dist/task-store.d.ts +4 -15
  61. package/dist/task-store.js +25 -148
  62. package/dist/tools/monitor-tools.js +9 -0
  63. package/dist/trigger-system.js +2 -1
  64. package/package.json +4 -1
  65. package/src/goal-reducer.ts +20 -1
  66. package/src/goal-store.ts +35 -143
  67. package/src/index.ts +5 -1
  68. package/src/loop-reducer.ts +10 -0
  69. package/src/monitor-manager.ts +35 -12
  70. package/src/reducer-backed-store.ts +168 -0
  71. package/src/store.ts +28 -142
  72. package/src/task-reducer.ts +3 -0
  73. package/src/task-store.ts +28 -136
  74. package/src/tools/monitor-tools.ts +9 -0
  75. package/src/trigger-system.ts +2 -1
  76. package/vitest.config.ts +25 -0
  77. package/DIFFERENTIAL_REVIEW_REPORT.md +0 -81
  78. package/tmp/perf-cap-data/loops.json +0 -455
  79. package/tmp/perf-cap-data/tasks.json +0 -1
  80. package/tmp/perf-data/loops-0.json +0 -1
  81. package/tmp/perf-data/loops-10.json +0 -1
  82. package/tmp/perf-data/loops-100.json +0 -1
  83. package/tmp/perf-data/loops-1000.json +0 -1
  84. package/tmp/perf-data/loops-500.json +0 -1
  85. package/tmp/perf-data/tasks-0.json +0 -1
  86. package/tmp/perf-data/tasks-10.json +0 -1
  87. package/tmp/perf-data/tasks-100.json +0 -1
  88. package/tmp/perf-data/tasks-1000.json +0 -1
  89. package/tmp/perf-data/tasks-500.json +0 -1
  90. package/tmp/perf-data-session/loops-0.json +0 -4
  91. package/tmp/perf-data-session/loops-100.json +0 -1805
  92. package/tmp/perf-data-session/loops-1000.json +0 -18005
  93. package/tmp/perf-data-session/loops-25.json +0 -455
  94. package/tmp/perf-data-session/loops-500.json +0 -9005
  95. package/tmp/perf-data-session/tasks-0.json +0 -1
  96. package/tmp/perf-data-session/tasks-100.json +0 -1
  97. package/tmp/perf-data-session/tasks-1000.json +0 -1
  98. package/tmp/perf-data-session/tasks-25.json +0 -1
  99. package/tmp/perf-data-session/tasks-500.json +0 -1
  100. package/tmp/perf-session-init.js +0 -98
  101. package/tmp/perf-startup-audit.js +0 -80

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.