Просмотр исходного кода

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 лет назад
Родитель
Сommit
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: {