workspace.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. /**
  3. * An array of the paths to all the applications present in this workspace
  4. */
  5. "apps": [
  6. "app-trade",
  7. "app-make"
  8. ],
  9. "frameworks": {
  10. "ext": {
  11. "path":"ext",
  12. "version":"6.6.0.258"
  13. }
  14. },
  15. /**
  16. * An object containing key value pair framework descriptors.
  17. *
  18. * The value should be an object containing "path" the path inside the workspace where the framework
  19. * files can be found and "version" the version of the framework. For example:
  20. *
  21. * "frameworks": {
  22. * "ext": {
  23. * "path": "ext",
  24. * "version": "n.n.n.n"
  25. * },
  26. * "extnew": {
  27. * "path": "extnew",
  28. * "version": "n.n.n.n"
  29. * }
  30. * }
  31. *
  32. * You can exclude the directories that contain the framework from source control and later restore them
  33. * with "sencha workspace install". See "sencha help workspace install" for more information.
  34. *
  35. */
  36. "framework": "ext",
  37. /**
  38. * This is the folder for build outputs in the workspace.
  39. */
  40. "build": {
  41. "dir": "${workspace.dir}/build"
  42. },
  43. /**
  44. * These configs determine where packages are generated and extracted to (when downloaded).
  45. */
  46. "packages": {
  47. /**
  48. * This folder contains all local packages.
  49. * If a comma-separated string is used as value the first path will be used as the path to generate new packages.
  50. */
  51. "dir": "${workspace.dir}/packages/local,${workspace.dir}/packages",
  52. /**
  53. * This folder contains all extracted (remote) packages.
  54. */
  55. "extract": "${workspace.dir}/packages/remote"
  56. }
  57. }