From c2c5658abb11ca13c9c8d28d6e97c1cfbff28b29 Mon Sep 17 00:00:00 2001 From: Matthias Bussonnier Date: Mon, 15 Aug 2016 14:41:47 -0700 Subject: [PATCH] Do not assume sourcemaps are separate files. We likely want to be careful with these at is likely make the files bigger --- setupbase.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/setupbase.py b/setupbase.py index aa0403eab..4d290e2b1 100644 --- a/setupbase.py +++ b/setupbase.py @@ -121,13 +121,10 @@ def find_package_data(): for app in ['auth', 'edit', 'notebook', 'terminal', 'tree']: static_data.extend([ pjoin('static', app, 'js', 'built', '*main.min.js'), - pjoin('static', app, 'js', 'built', '*main.min.js.map'), ]) static_data.extend([ pjoin('static', 'built', '*index.js'), - pjoin('static', 'built', '*index.js.map'), pjoin('static', 'services', 'built', '*contents.js'), - pjoin('static', 'services', 'built', '*contents.js.map'), ]) components = pjoin("static", "components")