Set up the .djblets symlink before running `npm install`.
Review Request #12859 — Created March 1, 2023 and submitted — Latest diff uploaded
We now set up a
.djblets
symlink in order to have easy access to
Djblets'spackage.json
for dependency management. Unfortunately, we
were setting this up after callingnpm install
, meaning we weren't
installing any of those dependencies.This change moves that logic to set up
.djblets
before we install
those dependencies.
Removed
.djblets
andnode_modules
and re-ransetup.py develop
.
Checkednode_modules
for all the required dependencies.