diff --git a/frappe/__init__.py b/frappe/__init__.py index 1ed535aeba..5bd272df28 100644 --- a/frappe/__init__.py +++ b/frappe/__init__.py @@ -13,7 +13,7 @@ import os, sys, importlib, inspect, json from .exceptions import * from .utils.jinja import get_jenv, get_template, render_template -__version__ = '8.0.50' +__version__ = '8.0.51' __title__ = "Frappe Framework" local = Local() diff --git a/frappe/build.js b/frappe/build.js index 2f1ce54fdd..8c3dccc182 100644 --- a/frappe/build.js +++ b/frappe/build.js @@ -121,9 +121,9 @@ function pack(output_path, inputs, minify) { function babelify(content, path, minify) { let presets = ['es2015', 'es2016']; - if(minify) { - presets.push('babili'); // new babel minifier - } + // if(minify) { + // presets.push('babili'); // new babel minifier + // } try { return babel.transform(content, { presets: presets,