浏览代码

Clean up the temporary public path file

Webpack includes this file into the remoteEntry file, so we do not need to keep it as a separate file.
Jason Grout 4 年之前
父节点
当前提交
47612df78a
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      builder/src/extensionConfig.ts

+ 3 - 0
builder/src/extensionConfig.ts

@@ -221,6 +221,9 @@ function generateConfig({
         }
         data.jupyterlab._build = _build;
         writeJSONFile(path.join(outputPath, 'package.json'), data);
+
+        // Remove our temporary public path file
+        fs.removeSync(publicpath);
       });
     }
   }