Closed arturovt closed 1 week ago
CI is running/has finished running commands for commit 4c36c5c5b8e4fd87b512f2dbaf554cccb6e656f7. As they complete they will appear below. Click to see the status, the terminal output, and the build insights.
📂 See all runs for this CI Pipeline Execution
Sent with 💌 from NxCloud.
``` yarn add https://pkg.pr.new/@ngxs/devtools-plugin@2256.tgz ```
``` yarn add https://pkg.pr.new/@ngxs/form-plugin@2256.tgz ```
``` yarn add https://pkg.pr.new/@ngxs/hmr-plugin@2256.tgz ```
``` yarn add https://pkg.pr.new/@ngxs/router-plugin@2256.tgz ```
``` yarn add https://pkg.pr.new/@ngxs/storage-plugin@2256.tgz ```
``` yarn add https://pkg.pr.new/@ngxs/store@2256.tgz ```
``` yarn add https://pkg.pr.new/@ngxs/websocket-plugin@2256.tgz ```
commit: 4c36c5c
Total files change +126B +0.1%
Final result: :white_check_mark:
View report in BundleMon website ➡️
No change in files bundle size
Final result: :white_check_mark:
View report in BundleMon website ➡️
Total files change -17B -0.01%
Final result: :white_check_mark:
View report in BundleMon website ➡️
Code Climate has analyzed commit 4c36c5c5 and detected 0 issues on this pull request.
The test coverage on the diff in this pull request is 100.0% (50% is the threshold).
This pull request will bring the total coverage in the repository to 95.3% (0.0% change).
View more on Code Climate.
In this commit, we enable plugin functions to run within the injection context. This allows plugin functions (but not classes) to call
inject
and access dependencies.Additionally, we've moved
compose
to theDispatcher
class since it was only used once. Keeping it in theDispatcher
ensures it isn't used elsewhere and can be safely inlined if needed.