not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
399 B

  1. requirejs.config({
  2. baseUrl: "lib",
  3. shim: {
  4. easel: {
  5. exports: 'createjs'
  6. },
  7. tween: {
  8. deps: ['easel'],
  9. exports: 'Tween'
  10. }
  11. },
  12. paths: {
  13. easel: '../lib/easeljs',
  14. tween: '../lib/tweenjs',
  15. activity: "../js"
  16. },
  17. packages: []
  18. });
  19. requirejs(["activity/activity","sugar-web/graphics/xocolor"]);