Skip to content

Instantly share code, notes, and snippets.

@bobby5892
Last active December 13, 2017 17:00
Show Gist options
  • Save bobby5892/689c54272ba49d63cb35b96f6a24266d to your computer and use it in GitHub Desktop.
Save bobby5892/689c54272ba49d63cb35b96f6a24266d to your computer and use it in GitHub Desktop.
workspace.json for sencha
{
/**
* An array of the paths to all the applications present in this workspace
*/
"apps": [
"affiliates"
],
/**
* An object containing key value pair framework descriptors.
*
* The value should be an object containing "path" the path inside the workspace where the framework
* files can be found and "version" the version of the framework. For example:
*
* "frameworks": {
* "ext": {
* "path": "ext",
* "version": "n.n.n.n"
* },
* "extnew": {
* "path": "extnew",
* "version": "n.n.n.n"
* }
* }
*
* You can exclude the directories that contain the framework from source control and later restore them
* with "sencha workspace install". See "sencha help workspace install" for more information.
*
*/
"frameworks": {
"ext": {
"path":"ext",
"version":"6.2.0.981"
}
},
/**
* This is the folder for build outputs in the workspace.
*/
"build": {
"dir": "${workspace.dir}/build"
},
/**
* These configs determine where packages are generated and extracted to (when downloaded).
*/
"packages": {
/**
* This folder contains all local packages.
* If a comma-separated string is used as value the first path will be used as the path to generate new packages.
*/
"dir": "${workspace.dir}/packages/local,${workspace.dir}/packages",
/**
* This folder contains all extracted (remote) packages.
*/
"extract": "${workspace.dir}/packages/remote"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment