upgrades.js 639 B

1234567891011121314151617181920212223
  1. /**
  2. * Licensed Materials - Property of IBM
  3. * IBM Watson Analytics (C) Copyright IBM Corp. 2016
  4. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  5. *
  6. */
  7. /* jshint ignore:start */
  8. if (typeof define !== 'function') { // NOSONAR
  9. var define = require('amdefine')(module); // NOSONAR
  10. }
  11. /* jshint ignore:end */
  12. define([
  13. './lib/UpgradeRunner',
  14. './lib/MigrationFactory',
  15. './UpgradeBase'
  16. ], function(UpgradeRunner, MigrationFactory, UpgradeBase) {
  17. return {
  18. UpgradeRunner: UpgradeRunner,
  19. MigrationFactory: MigrationFactory,
  20. UpgradeBase: UpgradeBase
  21. };
  22. });