Skip to content

Commit

Permalink
fix watch expect
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio committed Mar 20, 2024
1 parent a8689e9 commit 9446adf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jupyterlab/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@
from jupyterlab.semver import Range, gt, gte, lt, lte, make_semver

# The regex for expecting the webpack output.
# TODO: re-enable
# TODO: check if we can only keep the previous one
# WEBPACK_EXPECT = re.compile(r".*theme-light-extension/style/theme.css")
WEBPACK_EXPECT = re.compile("Rspack compiled")
WEBPACK_EXPECT = re.compile(r".*theme-light-extension/style/theme.css|Rspack compiled")

# The repo root directory
REPO_ROOT = osp.abspath(osp.join(HERE, ".."))
Expand Down

0 comments on commit 9446adf

Please sign in to comment.