浏览代码

Fix watch mode

This fixes `jupyter lab --dev-mode --watch`
Jason Grout 4 年之前
父节点
当前提交
6f396a6313
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      jupyterlab/commands.py

+ 1 - 1
jupyterlab/commands.py

@@ -37,7 +37,7 @@ from jupyterlab.coreconfig import _get_default_core_data, CoreConfig
 
 
 # The regex for expecting the webpack output.
-WEBPACK_EXPECT = re.compile(r'.*/index.out.js')
+WEBPACK_EXPECT = re.compile(r'.*theme-light-extension/style/index.css')
 
 # The dev mode directory.
 DEV_DIR = osp.abspath(os.path.join(HERE, '..', 'dev_mode'))