diff --git a/frappe/__init__.py b/frappe/__init__.py index 5bd272df28..d6230c3030 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.51' +__version__ = '8.0.52' __title__ = "Frappe Framework" local = Local() diff --git a/frappe/build.js b/frappe/build.js index 4c271bc1e2..8c3dccc182 100644 --- a/frappe/build.js +++ b/frappe/build.js @@ -103,6 +103,8 @@ function pack(output_path, inputs, minify) { output_txt += `\n/*\n *\t${file}\n */\n` } output_txt += file_content; + + output_txt = output_txt.replace(/['"]use strict['"];/, ''); } const target = p(assets_path, output_path);