浏览代码

make update:core:mode the same as 2.x branch

Steven Silvester 4 年之前
父节点
当前提交
c30cb6602b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      buildutils/src/update-core-mode.ts

+ 1 - 1
buildutils/src/update-core-mode.ts

@@ -22,7 +22,7 @@ data['jupyterlab']['linkedPackages'] = {};
 const staging = './jupyterlab/staging';
 
 // Ensure a clean staging directory.
-const keep = ['yarn.js', '.yarnrc', 'webpack.config.js'];
+const keep = ['yarn.js', '.yarnrc'];
 fs.readdirSync(staging).forEach(name => {
   if (keep.indexOf(name) === -1) {
     fs.removeSync(path.join(staging, name));