Closed arturovt closed 1 week ago
CI is running/has finished running commands for commit 7e8a596a911a571bfdacd7f5d3d6e445a8107ba5. 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@2248.tgz ```
``` yarn add https://pkg.pr.new/@ngxs/form-plugin@2248.tgz ```
``` yarn add https://pkg.pr.new/@ngxs/hmr-plugin@2248.tgz ```
``` yarn add https://pkg.pr.new/@ngxs/router-plugin@2248.tgz ```
``` yarn add https://pkg.pr.new/@ngxs/storage-plugin@2248.tgz ```
``` yarn add https://pkg.pr.new/@ngxs/store@2248.tgz ```
``` yarn add https://pkg.pr.new/@ngxs/websocket-plugin@2248.tgz ```
commit: 7e8a596
Code Climate has analyzed commit 7e8a596a 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.
No change in files bundle size
Final result: :white_check_mark:
View report in BundleMon website ➡️
Total files change -8B -0.04%
Final result: :white_check_mark:
View report in BundleMon website ➡️
Total files change -256B -0.12%
Final result: :white_check_mark:
View report in BundleMon website ➡️
In this commit, we first remove the
@Selector()
decorator because we can usecreateSelector
directly. This also removes__decorate
calls for thestate
andurl
properties. Secondly, we mark these properties as 'pure.' The/* @__PURE__ */
hint tells the bundler thatcreateSelector
has no side effects and that the output of this expression can be safely removed if unused. Therefore, ifstate
orurl
is never accessed anywhere in our code, it can be tree-shaken.