File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 12
12
to flatten **all** dependencies and could cause unexpected results. We **only** want to
13
13
explicitly flatten out all `@angular/*` dependencies. This can be achieved with resolutions.
14
14
Read more here: https://yarnpkg.com/lang/en/docs/package-json/#toc-resolutions
15
+
16
+ **Note** that this script has to be written in Python because the docker container which
17
+ is used for our CI does not come with NodeJS pre-installed. Since this script needs to run
18
+ before the Bazel analysis phase is started, we can only run this script only with tools that
19
+ are pre-installed in the image. Python is a pre-installed in the google/bazel official image
20
+ and therefore we use that for the "package.json" modification. Note that this script is only
21
+ running on CI and therefore there are no implications with writing this in python.
15
22
"""
16
23
17
24
import json
You can’t perform that action at this time.
0 commit comments