minify-js: Remove; everything has been migrated to Webpack.

min/sockjs-0.3.4.min.js is not used.

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
Anders Kaseorg
2019-06-29 01:26:57 -07:00
committed by Tim Abbott
parent 3ffe78e483
commit 079ddae4c8
13 changed files with 8 additions and 187 deletions

View File

@@ -30,7 +30,7 @@ class SourceMap:
out = '' # type: str
for ln in stacktrace.splitlines():
out += ln + '\n'
match = re.search(r'/static/(?:webpack-bundles|min)/(.+)(\.[\.0-9a-f]+\.js):(\d+):(\d+)', ln)
match = re.search(r'/static/webpack-bundles/(.+)(\.[\.0-9a-f]+\.js):(\d+):(\d+)', ln)
if match:
# Get the appropriate source map for the minified file.
minified_src = match.groups()[0] + match.groups()[1]