瀏覽代碼

Turn off uglify caching in production builds.

This seems to be causing an error in Appveyor (such as https://ci.appveyor.com/project/jupyterlab/jupyterlab/build/1.0.7521/job/cc42qxscjdpm5t0n - python 3.6 has an error removing one of the cached files when cleaning up a temporary directory), so we’ll revert to the old non-cached behavior for now.
Jason Grout 6 年之前
父節點
當前提交
0a136fe7b6
共有 2 個文件被更改,包括 0 次插入2 次删除
  1. 0 1
      dev_mode/webpack.prod.config.js
  2. 0 1
      jupyterlab/staging/webpack.prod.config.js

+ 0 - 1
dev_mode/webpack.prod.config.js

@@ -8,7 +8,6 @@ module.exports = merge(common, {
   optimization: {
     minimizer: [
       new UglifyJsPlugin({
-        cache: true,
         parallel: true,
         sourceMap: true,
         uglifyOptions: {

+ 0 - 1
jupyterlab/staging/webpack.prod.config.js

@@ -8,7 +8,6 @@ module.exports = merge(common, {
   optimization: {
     minimizer: [
       new UglifyJsPlugin({
-        cache: true,
         parallel: true,
         sourceMap: true,
         uglifyOptions: {