With the previous fix, it worked on my local machine ( I suspect that my local machine kept some build cache) but didn't pass the jenkins build on develop branch, while the mysterious thing is Jenkins passed in my last PR.
It is due to Jenkins build node_modules for modules which has been deleted by me to avoid eslint-config mismatch version issues. So in this test, I recover that command but made some modifications. The idea is to filter our group's packages but ignore eslint-config, as not every packages are up to date with this one.
However, although we don't update eslint-config package, there sill are some peer dependency issues under modules, so we also need to specify the peer dependency explicitly to get rid of error messages. Please refer to experiments-summary-panel and species-summary-panel.
With the previous fix, it worked on my local machine ( I suspect that my local machine kept some build cache) but didn't pass the jenkins build on develop branch, while the mysterious thing is Jenkins passed in my last PR.
It is due to Jenkins build node_modules for modules which has been deleted by me to avoid
eslint-config
mismatch version issues. So in this test, I recover that command but made some modifications. The idea is to filter our group's packages but ignoreeslint-config
, as not every packages are up to date with this one.However, although we don't update
eslint-config
package, there sill are some peer dependency issues undermodules
, so we also need to specify the peer dependency explicitly to get rid of error messages. Please refer to experiments-summary-panel and species-summary-panel.