Skip to content

Commit 5c07f0e

Browse files
author
Kyle Morse
committed
Add screenshot
1 parent 6939652 commit 5c07f0e

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

README.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
#Custom Grid with deep export
22

3+
![](screenshot.png)
34

4-
### Caveats
5+
### Caveats
56
If an item has a parent that is out of scope, then that item's relationship will not be seen.
67

78
## Development Notes
89

910
### First Load
1011

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,
1213
you're going to need to have these installed:
1314

1415
* node.js
1516
* grunt-cli
1617
* grunt-init
17-
18+
1819
Since you're getting this from github, we assume you have the command line
1920
version of git also installed. If not, go get git.
2021

@@ -25,15 +26,15 @@ to get set up to develop:
2526

2627
### Structure
2728

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
2930
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
3132
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
3334
file that is loaded first for creating mocks and doing other shortcuts
3435
(fastHelper.js) **Tests should be in a file named <something>-spec.js**
3536
* 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
3738
(slowHelper.js) **Tests should be in a file named <something>-spec.js**
3839
* templates: This is where templates that are used to create the production
3940
and debug html files live. The advantage of using these templates is that
@@ -48,10 +49,10 @@ to get set up to develop:
4849
"username":"[email protected]",
4950
"password":"secret"
5051
}
51-
52+
5253
### Usage of the grunt file
5354
####Tasks
54-
55+
5556
##### grunt debug
5657

5758
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
6364

6465
##### grunt test-fast
6566

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
6768
directory are more pure unit tests and do not need to connect to Rally.
6869

6970
##### grunt test-slow

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"_comment": "This file is used by grunt",
33
"name": "custom-grid-with-deep-export",
4-
"version": "0.1.0",
4+
"version": "1.0.0",
55
"dependencies": {},
66
"devDependencies": {
77
"grunt": "~0.4.1",

0 commit comments

Comments
 (0)