flake8
passed.
JSHint
passed.
Review Request #12956 — Created April 14, 2023 and submitted
The code to try to find the rollup configuration file iterates up
the directory tree until either the config is found or we hit the root.
Unfortunately, this was comparing aPath
object (for the current path)
againststr
(for the root), which always evaluates toFalse
. The
result was that if there's no rollup config, we'd end up infinitely
looping comparingPath('/')
to/
. This change fixes that.
Tried to load an extension which defined an
index.ts
file in its
bundles but did not have arollup.config.js
file. Saw that we no
longer hit the infinite loop.
Summary | ID |
---|---|
d7fe1766dcb6a92ab2b8a5942dc2a43160715219 |