-
Notifications
You must be signed in to change notification settings - Fork 1
/
workspace.json
59 lines (55 loc) · 1.69 KB
/
workspace.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
/**
* An array of the paths to all the applications present in this workspace
*/
"apps": [
""
],
/**
* 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":"7.0.0.168"
}
},
/**
* 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"
}
}