summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Jones <r1chardj0n3s@gmail.com>2016-08-23 15:37:58 +1000
committerRichard Jones <r1chardj0n3s@gmail.com>2016-08-23 15:40:46 +1000
commit9a6a7764317d3a9db530f599d5958d3e14126551 (patch)
tree73055e98ab77bd34b9f845a93235a0f67635c533
parenta5ace69bc0ed04b76addd5bbb6edd73f6be47662 (diff)
downloadxstatic-angular-smart-table-9a6a7764317d3a9db530f599d5958d3e14126551.tar.gz
Correct the entry point file name1.4.13.1
The entry point MAIN referenced a file that we don't package, the minified file. Change-Id: I8fe2bd617f42fa5e55edcf4ee8a2b01e6a36c356
-rw-r--r--xstatic/pkg/angular_smart_table/__init__.py4
1 files 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)