From 9a6a7764317d3a9db530f599d5958d3e14126551 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Tue, 23 Aug 2016 15:37:58 +1000 Subject: Correct the entry point file name The entry point MAIN referenced a file that we don't package, the minified file. Change-Id: I8fe2bd617f42fa5e55edcf4ee8a2b01e6a36c356 --- xstatic/pkg/angular_smart_table/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xstatic/pkg/angular_smart_table/__init__.py b/xstatic/pkg/angular_smart_table/__init__.py index fd0a5af..e910dd3 100644 --- a/xstatic/pkg/angular_smart_table/__init__.py +++ b/xstatic/pkg/angular_smart_table/__init__.py @@ -17,7 +17,7 @@ NAME = __name__.split('.')[-1] # package name (e.g. 'foo' or 'foo_bar') VERSION = '1.4.13' # version of the packaged files, please use the upstream # version number -BUILD = '0' # our package build number, so we can release new builds +BUILD = '1' # our package build number, so we can release new builds # with fixes for xstatic stuff. PACKAGE_VERSION = VERSION + '.' + BUILD # version used for PyPi @@ -44,7 +44,7 @@ BASE_DIR = join(dirname(__file__), 'data') # location of the Javascript file that's the entry point for this package, if # one exists, relative to BASE_DIR -MAIN='smart-table.min.js' +MAIN='smart-table.js' LOCATIONS = { # CDN locations (if no public CDN exists, use an empty dict) -- cgit v1.2.1