workspace.json 1.7 KB

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