1
1
#Custom Grid with deep export
2
2
3
+ ![ ] ( screenshot.png )
3
4
4
- ### Caveats
5
+ ### Caveats
5
6
If an item has a parent that is out of scope, then that item's relationship will not be seen.
6
7
7
8
## Development Notes
8
9
9
10
### First Load
10
11
11
- If you've just downloaded this from github and you want to do development,
12
+ If you've just downloaded this from github and you want to do development,
12
13
you're going to need to have these installed:
13
14
14
15
* node.js
15
16
* grunt-cli
16
17
* grunt-init
17
-
18
+
18
19
Since you're getting this from github, we assume you have the command line
19
20
version of git also installed. If not, go get git.
20
21
@@ -25,15 +26,15 @@ to get set up to develop:
25
26
26
27
### Structure
27
28
28
- * src/javascript: All the JS files saved here will be compiled into the
29
+ * src/javascript: All the JS files saved here will be compiled into the
29
30
target html file
30
- * src/style: All of the stylesheets saved here will be compiled into the
31
+ * src/style: All of the stylesheets saved here will be compiled into the
31
32
target html file
32
- * test/fast: Fast jasmine tests go here. There should also be a helper
33
+ * test/fast: Fast jasmine tests go here. There should also be a helper
33
34
file that is loaded first for creating mocks and doing other shortcuts
34
35
(fastHelper.js) ** Tests should be in a file named <something >-spec.js**
35
36
* test/slow: Slow jasmine tests go here. There should also be a helper
36
- file that is loaded first for creating mocks and doing other shortcuts
37
+ file that is loaded first for creating mocks and doing other shortcuts
37
38
(slowHelper.js) ** Tests should be in a file named <something >-spec.js**
38
39
* templates: This is where templates that are used to create the production
39
40
and debug html files live. The advantage of using these templates is that
@@ -48,10 +49,10 @@ to get set up to develop:
48
49
49
50
"password":"secret"
50
51
}
51
-
52
+
52
53
### Usage of the grunt file
53
54
####Tasks
54
-
55
+
55
56
##### grunt debug
56
57
57
58
Use grunt debug to create the debug html file. You only need to run this when you have added new files to
@@ -63,7 +64,7 @@ Use grunt build to create the production html file. We still have to copy the h
63
64
64
65
##### grunt test-fast
65
66
66
- Use grunt test-fast to run the Jasmine tests in the fast directory. Typically, the tests in the fast
67
+ Use grunt test-fast to run the Jasmine tests in the fast directory. Typically, the tests in the fast
67
68
directory are more pure unit tests and do not need to connect to Rally.
68
69
69
70
##### grunt test-slow
0 commit comments