[open-ils-commits] [GIT] Evergreen ILS branch master updated. c66d6328d61083db136bd9213a44696073c62914

Evergreen Git git at git.evergreen-ils.org
Tue Apr 11 21:35:15 EDT 2017


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, master has been updated
       via  c66d6328d61083db136bd9213a44696073c62914 (commit)
       via  4a068d036adeb0fff2343f7bc9c7c27bc50c1ee2 (commit)
       via  8c7000a1a54b18f6bec919f6c6b3e563d4fd4725 (commit)
      from  4ccf38bfc6ee5ecd5c3575212b5dbfbdfe9296de (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit c66d6328d61083db136bd9213a44696073c62914
Author: Dan Scott <dscott at laurentian.ca>
Date:   Tue Apr 11 20:21:56 2017 -0400

    LP#1680624 Remove bower packaging bits
    
    We no longer need to install bower as part of the Makefile.install
    targets or worry about the bower_components cache directory when
    generating a release. Rip out those references.
    
    Signed-off-by: Dan Scott <dscott at laurentian.ca>
    Signed-off-by: Ben Shum <ben at evergreener.net>

diff --git a/Open-ILS/src/extras/install/Makefile.common b/Open-ILS/src/extras/install/Makefile.common
index 81dd53c..20bdb07 100644
--- a/Open-ILS/src/extras/install/Makefile.common
+++ b/Open-ILS/src/extras/install/Makefile.common
@@ -36,7 +36,6 @@ install_nodejs_from_source:
 	./configure && make && make install
 	npm update
 	npm install -g grunt-cli
-	npm install -g bower
 
 clean:
 	make -C $(LIBDBI) clean
diff --git a/Open-ILS/src/extras/install/Makefile.debian-jessie b/Open-ILS/src/extras/install/Makefile.debian-jessie
index 945ba20..53039fb 100644
--- a/Open-ILS/src/extras/install/Makefile.debian-jessie
+++ b/Open-ILS/src/extras/install/Makefile.debian-jessie
@@ -146,13 +146,12 @@ all:
 install_postgres_server:
 	make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_94)"
 
-# note: if/when grunt-cli and bower are available as 
-# packages, use the packaged versions instead.
+# note: if/when grunt-cli is available as a
+# package, use the packaged version instead.
 install_developer:
 	make -f $(DIR)/Makefile.debian DEBS="$(DEVELOPER_DEBS)"
 	npm update
 	npm install -g grunt-cli
-	npm install -g bower
 
 install_translator: install_developer
 	make -f $(DIR)/Makefile.debian DEBS="$(TRANSLATOR_DEBS)"
diff --git a/Open-ILS/src/extras/install/Makefile.ubuntu-trusty b/Open-ILS/src/extras/install/Makefile.ubuntu-trusty
index bcddd7e..385c342 100644
--- a/Open-ILS/src/extras/install/Makefile.ubuntu-trusty
+++ b/Open-ILS/src/extras/install/Makefile.ubuntu-trusty
@@ -152,13 +152,12 @@ all:
 install_postgres_server:
 	make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_94)"
 
-# note: if/when grunt-cli and bower are available as 
-# packages, use the packaged versions instead.
+# note: if/when grunt-cli is available as a
+# package, use the packaged version instead.
 install_developer:
 	make -f $(DIR)/Makefile.debian DEBS="$(DEVELOPER_DEBS)"
 	npm update
 	npm install -g grunt-cli
-	npm install -g bower
 
 install_translator: install_developer
 	make -f $(DIR)/Makefile.debian DEBS="$(TRANSLATOR_DEBS)"
diff --git a/Open-ILS/src/extras/install/Makefile.ubuntu-xenial b/Open-ILS/src/extras/install/Makefile.ubuntu-xenial
index ead590f..ca0cdf3 100644
--- a/Open-ILS/src/extras/install/Makefile.ubuntu-xenial
+++ b/Open-ILS/src/extras/install/Makefile.ubuntu-xenial
@@ -145,13 +145,12 @@ all:
 install_postgres_server:
 	make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_95)"
 
-# note: if/when grunt-cli and bower are available as 
-# packages, use the packaged versions instead.
+# note: if/when grunt-cli is available as a
+# package, use the packaged version instead.
 install_developer:
 	make -f $(DIR)/Makefile.debian DEBS="$(DEVELOPER_DEBS)"
 	npm update
 	npm install -g grunt-cli
-	npm install -g bower
 
 install_translator: install_developer
 	make -f $(DIR)/Makefile.debian DEBS="$(TRANSLATOR_DEBS)"
diff --git a/build/tools/make_release b/build/tools/make_release
index 058ae5f..2fc6f65 100755
--- a/build/tools/make_release
+++ b/build/tools/make_release
@@ -79,7 +79,7 @@ while getopts ":hv:f:F:nptbrij:c" opt; do
             echo "   -r prompt to preview upgrade SQL in editor before committing."
             echo "   -i skip i18n; primarily useful for (quickly) testing this script."
             echo "   -j opensrf javascript library path.  If osrf_config is found, the value derived from osrf_config --libdir."
-            echo "   -c build the experimental browser client;  requires nodejs/grunt-cli/bower"
+            echo "   -c build the experimental browser client;  requires nodejs/grunt-cli"
             echo "   NOTE: -t and -b override PREV_BRANCH/PREV_VERSION, but -b overrides -t."
             exit -1
         ;;
@@ -331,10 +331,9 @@ if [ "$BUILD_BROWSER_CLIENT" == "YES" ]; then
     echo "Building browser staff client"
     cd Open-ILS/web/js/ui/default/staff/
     npm install   # fetch build dependencies
-    bower install # fetch JS dependencies
     grunt build # copy to build dir and minify JS files
-    # bower / node cache is big and unnecessary in the final build.  remove them.
-    rm -r bower_components node_modules 
+    # npm cache is big and unnecessary in the final build. remove it.
+    rm -r node_modules 
     cd ../../../../../../../ # release dir
 else
     echo "Skipping browser client build"

commit 4a068d036adeb0fff2343f7bc9c7c27bc50c1ee2
Author: Dan Scott <dan at coffeecode.net>
Date:   Thu Apr 6 16:28:31 2017 -0400

    LP#1680624 angular-ui-bootstrap stopped shipping minified files
    
    Per https://github.com/angular-ui/bootstrap/issues/5522 upstream
    feels users should minimize the files themselves.
    
    Signed-off-by: Dan Scott <dan at coffeecode.net>
    Signed-off-by: Bill Erickson <berickxx at gmail.com>
    Signed-off-by: Ben Shum <ben at evergreener.net>

diff --git a/Open-ILS/web/js/ui/default/staff/Gruntfile.js b/Open-ILS/web/js/ui/default/staff/Gruntfile.js
index d006a65..2b93c14 100644
--- a/Open-ILS/web/js/ui/default/staff/Gruntfile.js
+++ b/Open-ILS/web/js/ui/default/staff/Gruntfile.js
@@ -23,8 +23,8 @@ module.exports = function(grunt) {
             'node_modules/angular-sanitize/angular-sanitize.min.js.map',
             'node_modules/angular-route/angular-route.min.js',
             'node_modules/angular-route/angular-route.min.js.map',
-            'node_modules/angular-ui-bootstrap/dist/ui-bootstrap.min.js',
-            'node_modules/angular-ui-bootstrap/dist/ui-bootstrap-tpls.min.js',
+            'node_modules/angular-ui-bootstrap/dist/ui-bootstrap.js',
+            'node_modules/angular-ui-bootstrap/dist/ui-bootstrap-tpls.js',
             'node_modules/angular-hotkeys/build/hotkeys.min.js',
             'node_modules/angular-file-saver/dist/angular-file-saver.bundle.min.js',
             'node_modules/angular-location-update/angular-location-update.min.js',
@@ -117,6 +117,17 @@ module.exports = function(grunt) {
       options: {
         banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n'
       },
+      dev: {
+        files: [{
+          expand: true,
+          src: ['build/js/ui-bootstrap.js', 'build/js/ui-bootstrap-tpls.js'],
+          dest: 'build/js',
+          cwd: '.',
+          rename: function (dst, src) {
+            return src.replace('.js', '.min.js');
+          }
+        }],
+      },
       build: {
         src: [
             // These are concatenated in order in the final build file.
@@ -127,7 +138,7 @@ module.exports = function(grunt) {
             'build/js/angular-sanitize.min.js',
             'build/js/angular-route.min.js',
             'build/js/ui-bootstrap.min.js',
-            'build/js/ui-bootstrap-tpls.min.js',
+            'build/js/ui-bootstrap-tpls.js',
             'build/js/hotkeys.min.js',
             'build/js/angular-tree-control.js',
             'build/js/ngToast.min.js',
@@ -156,7 +167,7 @@ module.exports = function(grunt) {
             'services/op_change.js',
         ],
         dest: 'build/js/<%= pkg.name %>.<%= pkg.version %>.min.js'
-      }
+      },
     },
 
     // bare concat operation; useful for testing concat w/o minification
@@ -204,7 +215,7 @@ module.exports = function(grunt) {
   grunt.loadNpmTasks('grunt-karma');
   grunt.loadNpmTasks('grunt-exec');
 
-  // note: "grunt concat" is not requried 
+  // note: "grunt concat" is not required 
   grunt.registerTask('build', ['copy', 'cssmin', 'uglify']);
 
   // test only, no minification
diff --git a/Open-ILS/web/js/ui/default/staff/test/karma.conf.js b/Open-ILS/web/js/ui/default/staff/test/karma.conf.js
index 0170e3c..4da4e66 100644
--- a/Open-ILS/web/js/ui/default/staff/test/karma.conf.js
+++ b/Open-ILS/web/js/ui/default/staff/test/karma.conf.js
@@ -12,7 +12,7 @@ module.exports = function(config){
       'node_modules/angular-file-saver/dist/angular-file-saver.bundle.min.js',
       'node_modules/ng-toast/dist/ngToast.min.js',
       'node_modules/angular-sanitize/angular-sanitize.min.js',
-      'build/js/ui-bootstrap.min.js',
+      'build/js/ui-bootstrap.js',
       'build/js/hotkeys.min.js',
       'build/js/angular-cookies.min.js',
       /* OpenSRF must be installed first */

commit 8c7000a1a54b18f6bec919f6c6b3e563d4fd4725
Author: Dan Scott <dan at coffeecode.net>
Date:   Thu Apr 6 00:26:50 2017 -0400

    LP#1680624 Consolidate package dependencies into package.json
    
    npm already enables us to designate dependencies in package.json,
    and projects have increasingly consolidated what bower used to be
    used for in package.json. We can do this with an npm-compatible version of
    angular-order-object-by from github.
    
    There are a few other tweaks to npm vs bower file locations, such as
    ng-toast instead of ngtoast for ngToast.
    
    Pin to AngularJS 1.5.x for now
    
    Signed-off-by: Dan Scott <dan at coffeecode.net>
    Signed-off-by: Bill Erickson <berickxx at gmail.com>
    Signed-off-by: Ben Shum <ben at evergreener.net>

diff --git a/Open-ILS/web/js/ui/default/staff/Gruntfile.js b/Open-ILS/web/js/ui/default/staff/Gruntfile.js
index b768b05..d006a65 100644
--- a/Open-ILS/web/js/ui/default/staff/Gruntfile.js
+++ b/Open-ILS/web/js/ui/default/staff/Gruntfile.js
@@ -4,7 +4,7 @@ module.exports = function(grunt) {
   var config = { 
     pkg: grunt.file.readJSON('package.json'),
 
-    // copy the files we care about from bower-fetched dependencies
+    // copy the files we care about from fetched dependencies
     // into our build directory
     copy: {
 
@@ -15,28 +15,28 @@ module.exports = function(grunt) {
           filter: 'isFile',
           expand : true,
           src: [
-            'bower_components/angular/angular.min.js',
-            'bower_components/angular/angular.min.js.map',
-            'bower_components/angular-animate/angular-animate.min.js',
-            'bower_components/angular-animate/angular-animate.min.js.map',
-            'bower_components/angular-sanitize/angular-sanitize.min.js',
-            'bower_components/angular-sanitize/angular-sanitize.min.js.map',
-            'bower_components/angular-route/angular-route.min.js',
-            'bower_components/angular-route/angular-route.min.js.map',
-            'bower_components/angular-bootstrap/ui-bootstrap.min.js',
-            'bower_components/angular-bootstrap/ui-bootstrap-tpls.min.js',
-            'bower_components/angular-hotkeys/build/hotkeys.min.js',
-            'bower_components/angular-file-saver/dist/angular-file-saver.bundle.min.js',
-            'bower_components/angular-location-update/angular-location-update.min.js',
-            'bower_components/angular-tree-control/angular-tree-control.js',
-            'bower_components/ngtoast/dist/ngToast.min.js',
-            'bower_components/jquery/dist/jquery.min.js',
-            'bower_components/angular-cookies/angular-cookies.min.js',
-            'bower_components/angular-cookies/angular-cookies.min.js.map',
-            'bower_components/iframe-resizer/js/iframeResizer.min.js',
-            'bower_components/iframe-resizer/js/iframeResizer.map',
-            'bower_components/iframe-resizer/js/iframeResizer.contentWindow.min.js',
-            'bower_components/angular-order-object-by/src/ng-order-object-by.js'
+            'node_modules/angular/angular.min.js',
+            'node_modules/angular/angular.min.js.map',
+            'node_modules/angular-animate/angular-animate.min.js',
+            'node_modules/angular-animate/angular-animate.min.js.map',
+            'node_modules/angular-sanitize/angular-sanitize.min.js',
+            'node_modules/angular-sanitize/angular-sanitize.min.js.map',
+            'node_modules/angular-route/angular-route.min.js',
+            'node_modules/angular-route/angular-route.min.js.map',
+            'node_modules/angular-ui-bootstrap/dist/ui-bootstrap.min.js',
+            'node_modules/angular-ui-bootstrap/dist/ui-bootstrap-tpls.min.js',
+            'node_modules/angular-hotkeys/build/hotkeys.min.js',
+            'node_modules/angular-file-saver/dist/angular-file-saver.bundle.min.js',
+            'node_modules/angular-location-update/angular-location-update.min.js',
+            'node_modules/angular-tree-control/angular-tree-control.js',
+            'node_modules/ng-toast/dist/ngToast.min.js',
+            'node_modules/jquery/dist/jquery.min.js',
+            'node_modules/angular-cookies/angular-cookies.min.js',
+            'node_modules/angular-cookies/angular-cookies.min.js.map',
+            'node_modules/iframe-resizer/js/iframeResizer.min.js',
+            'node_modules/iframe-resizer/js/iframeResizer.map',
+            'node_modules/iframe-resizer/js/iframeResizer.contentWindow.min.js',
+            'node_modules/angular-order-object-by/src/ng-order-object-by.js'
           ]
         }]
       },
@@ -48,12 +48,12 @@ module.exports = function(grunt) {
           filter : 'isFile',
           expand : true,
           src : [
-            'bower_components/angular-hotkeys/build/hotkeys.min.css',
-            'bower_components/bootstrap/dist/css/bootstrap.min.css', 
-            'bower_components/ngtoast/dist/ngToast.min.css',
-            'bower_components/ngtoast/dist/ngToast-animations.min.css',
-            'bower_components/angular-tree-control/css/tree-control.css',
-            'bower_components/angular-tree-control/css/tree-control-attribute.css',
+            'node_modules/angular-hotkeys/build/hotkeys.min.css',
+            'node_modules/bootstrap/dist/css/bootstrap.min.css', 
+            'node_modules/ngtoast/dist/ngToast.min.css',
+            'node_modules/ngtoast/dist/ngToast-animations.min.css',
+            'node_modules/angular-tree-control/css/tree-control.css',
+            'node_modules/angular-tree-control/css/tree-control-attribute.css',
           ]
         }]
       },
@@ -65,10 +65,10 @@ module.exports = function(grunt) {
           filter : 'isFile',
           expand : true,
           src : [
-            'bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot',
-            'bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.svg',
-            'bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf',
-            'bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff'
+            'node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.eot',
+            'node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.svg',
+            'node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf',
+            'node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff'
           ]
         }]
       },
@@ -80,16 +80,16 @@ module.exports = function(grunt) {
           filter : 'isFile',
           expand : true,
           src : [
-            'bower_components/angular-tree-control/images/sample.png',
-            'bower_components/angular-tree-control/images/node-opened-2.png',
-            'bower_components/angular-tree-control/images/folder.png',
-            'bower_components/angular-tree-control/images/node-closed.png',
-            'bower_components/angular-tree-control/images/node-closed-light.png',
-            'bower_components/angular-tree-control/images/node-opened.png',
-            'bower_components/angular-tree-control/images/node-opened-light.png',
-            'bower_components/angular-tree-control/images/folder-closed.png',
-            'bower_components/angular-tree-control/images/node-closed-2.png',
-            'bower_components/angular-tree-control/images/file.png'
+            'node_modules/angular-tree-control/images/sample.png',
+            'node_modules/angular-tree-control/images/node-opened-2.png',
+            'node_modules/angular-tree-control/images/folder.png',
+            'node_modules/angular-tree-control/images/node-closed.png',
+            'node_modules/angular-tree-control/images/node-closed-light.png',
+            'node_modules/angular-tree-control/images/node-opened.png',
+            'node_modules/angular-tree-control/images/node-opened-light.png',
+            'node_modules/angular-tree-control/images/folder-closed.png',
+            'node_modules/angular-tree-control/images/node-closed-2.png',
+            'node_modules/angular-tree-control/images/file.png'
           ]
         }]
       }
diff --git a/Open-ILS/web/js/ui/default/staff/bower.json b/Open-ILS/web/js/ui/default/staff/bower.json
deleted file mode 100644
index 63f801e..0000000
--- a/Open-ILS/web/js/ui/default/staff/bower.json
+++ /dev/null
@@ -1,40 +0,0 @@
-{
-  "name": "evergreen-staff-client",
-  "version": "0.0.1",
-  "authors": [
-    "Bill Erickson <berick at esilibrary.com>"
-  ],
-  "description": "Evergreen HTML Staff Client",
-  "keywords": [
-    "evergreen"
-  ],
-  "license": "GPL",
-  "homepage": "http://evergreen-ils.org",
-  "ignore": [
-    "**/.*",
-    "node_modules",
-    "bower_components",
-    "test",
-    "tests"
-  ],
-  "dependencies": {
-    "AngularJS": "angular-latest#~1.5.0",
-    "jquery": "~2.2.1",
-    "bootstrap": "~3.3.6",
-    "angular-route": "~1.5.0",
-    "angular-mocks": "~1.5.0",
-    "angular-bootstrap": "~1.2.4",
-    "angular-file-saver": "~1.1.0",
-    "angular-location-update": "~0.0.2",
-    "ngtoast": "~2.0.0",
-    "angular-tree-control": "~0.2.28",
-    "angular-animate": "~1.5.3",
-    "angular-hotkeys": "cfp-angular-hotkeys#^1.7.0",
-    "angular-cookies": "~1.5.8",
-    "iframe-resizer": "^3.5.5",
-    "angular-order-object-by": "*"
-  },
-  "resolutions": {
-    "angular": "~1.5.5"
-  }
-}
diff --git a/Open-ILS/web/js/ui/default/staff/package.json b/Open-ILS/web/js/ui/default/staff/package.json
index f820d68..91a1802 100644
--- a/Open-ILS/web/js/ui/default/staff/package.json
+++ b/Open-ILS/web/js/ui/default/staff/package.json
@@ -5,7 +5,18 @@
   "license": "GPL",
   "homepage": "http://evergreen-ils.org/",
   "devDependencies": {
-    "bower": "^1.3.3",
+    "angular": "~1.5",
+    "angular-animate": "~1.5.3",
+    "angular-ui-bootstrap": "~1.2.4",
+    "angular-cookies": "~1.5.8",
+    "angular-file-saver": "~1.1.0",
+    "angular-hotkeys": "^1.7.0",
+    "angular-location-update": "~0.0.2",
+    "angular-mocks": "~1.5.0",
+    "angular-route": "~1.5.0",
+    "angular-tree-control": "~0.2.28",
+    "angular-order-object-by": "rxfork/ngOrderObjectBy#npm",
+    "bootstrap": "~3.3.6",
     "grunt": "~0.4.4",
     "grunt-cli": "^0.1.13",
     "grunt-contrib-concat": "^0.4.0",
@@ -15,13 +26,16 @@
     "grunt-contrib-uglify": "^0.4.0",
     "grunt-exec": "^0.4.5",
     "grunt-karma": "^0.8.3",
-    "phantomjs-prebuilt": "^2.1.7",
+    "iframe-resizer": "^3.5.5",
+    "jquery": "~2.2.1",
     "karma": "^0.12.14",
     "karma-jasmine": "^0.1.5",
     "karma-phantomjs-launcher": "^1.0.0",
     "karma-script-launcher": "~0.1.0",
     "karma-spec-reporter": "0.0.12",
-    "karma-story-reporter": "^0.2.2"
+    "karma-story-reporter": "^0.2.2",
+    "ng-toast": "~2.0.0",
+    "phantomjs-prebuilt": "^2.1.7"
   },
   "scripts": {
     "test": "grunt test"
diff --git a/Open-ILS/web/js/ui/default/staff/test/karma.conf.js b/Open-ILS/web/js/ui/default/staff/test/karma.conf.js
index 8c7b650..0170e3c 100644
--- a/Open-ILS/web/js/ui/default/staff/test/karma.conf.js
+++ b/Open-ILS/web/js/ui/default/staff/test/karma.conf.js
@@ -8,10 +8,10 @@ module.exports = function(config){
     files : [
       'build/js/angular.min.js',
       'build/js/angular-route.min.js',
-      'bower_components/angular-mocks/angular-mocks.js', // testing only
-      'bower_components/angular-file-saver/dist/angular-file-saver.bundle.min.js',
-      'bower_components/ngtoast/dist/ngToast.min.js',
-      'bower_components/angular-sanitize/angular-sanitize.min.js',
+      'node_modules/angular-mocks/angular-mocks.js', // testing only
+      'node_modules/angular-file-saver/dist/angular-file-saver.bundle.min.js',
+      'node_modules/ng-toast/dist/ngToast.min.js',
+      'node_modules/angular-sanitize/angular-sanitize.min.js',
       'build/js/ui-bootstrap.min.js',
       'build/js/hotkeys.min.js',
       'build/js/angular-cookies.min.js',
diff --git a/docs/installation/server_installation.txt b/docs/installation/server_installation.txt
index ef178dd..8d8c49a 100644
--- a/docs/installation/server_installation.txt
+++ b/docs/installation/server_installation.txt
@@ -161,13 +161,6 @@ environment variable `PATH`.
 ------------------------------------------------------------------------------
 % sudo npm install -g grunt-cli
 ------------------------------------------------------------------------------
-+
-3. Install Bower
-+
-[source,sh]
-------------------------------------------------------------------------------
-% sudo npm install -g bower
-------------------------------------------------------------------------------
 
 [[install_files_for_web_staff_client]]
 Install files for web staff client
@@ -186,8 +179,7 @@ cd $EVERGREEN_ROOT/Open-ILS/web/js/ui/default/staff/
 +
 [source,sh]
 ------------------------------------------------------------------------------
-npm install   # fetch Grunt dependencies
-bower install # fetch JS dependencies
+npm install   # fetch JS dependencies
 ------------------------------------------------------------------------------
 +
 3. Run the build script.

-----------------------------------------------------------------------

Summary of changes:
 Open-ILS/src/extras/install/Makefile.common        |    1 -
 Open-ILS/src/extras/install/Makefile.debian-jessie |    5 +-
 Open-ILS/src/extras/install/Makefile.ubuntu-trusty |    5 +-
 Open-ILS/src/extras/install/Makefile.ubuntu-xenial |    5 +-
 Open-ILS/web/js/ui/default/staff/Gruntfile.js      |  103 +++++++++++---------
 Open-ILS/web/js/ui/default/staff/bower.json        |   40 --------
 Open-ILS/web/js/ui/default/staff/package.json      |   20 +++-
 .../web/js/ui/default/staff/test/karma.conf.js     |   10 +-
 build/tools/make_release                           |    7 +-
 docs/installation/server_installation.txt          |   10 +--
 10 files changed, 89 insertions(+), 117 deletions(-)
 delete mode 100644 Open-ILS/web/js/ui/default/staff/bower.json


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list