bundleManifest.js 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /**
  2. * IBM Confidential OCO Source Materials IBM Business Platform: Glass Foundation
  3. * (C) Copyright IBM Corp. 2018
  4. *
  5. * The source code for this program is not published or otherwise divested of
  6. * its trade secrets, irrespective of what has been deposited with the U.S.
  7. * Copyright Office
  8. */
  9. requirejs.config({
  10. paths: {
  11. cahome: 'js/cahome'
  12. },
  13. map: {
  14. '*': {
  15. 'cahome/lib/@waca/bacontentnav/public/js/bacontentnav': 'bacontentnav',
  16. 'cahome/lib/@waca/baglass/js/baglass': 'baglass',
  17. 'cahome/lib/@waca/core-client': 'baglass/core-client'
  18. }
  19. },
  20. bundles: {
  21. 'js/cahome/bundle': [
  22. 'cahome/nls/CahomeResources',
  23. 'cahome/nls/root/CahomeResources',
  24. 'cahome/nls/StringResources',
  25. 'text!cahome/views/templates/HomeView.html',
  26. 'text!cahome/ui/templates/RefPanel.html',
  27. 'cahome/ui/RefPanel',
  28. 'text!cahome/ui/templates/RefWidget.html',
  29. 'cahome/ui/RefWidget',
  30. 'cahome/utils/UIUtils',
  31. 'cahome/utils/MenuUtils',
  32. 'text!cahome/ui/templates/Tile.html',
  33. 'cahome/ui/Tile',
  34. 'text!cahome/ui/templates/TilesView.html',
  35. 'cahome/lib/cahome-ui/cahome-ui.min',
  36. 'cahome/ui/TilesView',
  37. 'cahome/ui/actionHandlers/QuickLaunchHandler',
  38. 'text!cahome/ui/templates/QuickLaunchTarget.html',
  39. 'cahome/ui/QuickLaunchTarget',
  40. 'text!cahome/ui/templates/QuickLaunch.html',
  41. 'cahome/ui/QuickLaunch',
  42. 'cahome/ui/actionHandlers/DeleteActionHandler',
  43. 'cahome/ui/actionHandlers/RefreshActionHandler',
  44. 'cahome/views/HomeView',
  45. 'cahome/views/CAHomeView',
  46. 'cahome/ui/actionHandlers/ShareFolderActionHandler'
  47. ]
  48. }
  49. });