Browse Source

Merge pull request #9101 from jasongrout/fixwatch2

Fix watch mode
Jason Grout 4 years ago
parent
commit
b4db7f03d2
1 changed files with 1 additions and 1 deletions
  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'))