Skip to content

Commit 6479e9a

Browse files
committed
Merge pull request #5 from ngoldman/master
fix more links on site, add tasks
2 parents ec5fad5 + 9af863a commit 6479e9a

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

Gruntfile.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,10 @@ module.exports = function(grunt) {
137137
grunt.loadNpmTasks('grunt-gh-pages');
138138
grunt.loadNpmTasks('grunt-markdown');
139139

140-
// Default task(s)
141-
grunt.registerTask('default', ['connect', 'jshint', 'concat', 'uglify', 'markdown', 'compass', 'watch']);
142-
grunt.registerTask('deploy', ['jshint', 'concat', 'uglify', 'markdown', 'compass', 'gh-pages']);
140+
grunt.registerTask('test', ['jshint']);
141+
grunt.registerTask('build', ['test', 'concat', 'uglify', 'markdown', 'compass']);
142+
grunt.registerTask('develop', ['connect', 'build', 'watch']);
143+
grunt.registerTask('deploy', ['build', 'gh-pages']);
144+
grunt.registerTask('default', ['develop']);
143145

144146
};

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ We'd like to accomplish all of the following charts as directives:
118118
1. Fork & clone
119119
1. `npm install`
120120
1. `grunt` to run development environment
121-
1. ~~Test with `grunt test`~~ (not yet implemented)
121+
1. Test with `grunt test`
122122
1. Open a pull request!
123123

124124
## License

site/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
<div class="navigation-section white-text">
6363
<a href="./examples" class="post-1">Examples</a>
6464
<a href="./documentation" class="post-1">API Docs</a>
65-
<a href="http://esripdx.github.io/angular-dimple" class="btn white">GitHub</a>
65+
<a href="https://github.com/esripdx/angular-dimple" class="btn white">GitHub</a>
6666
</ul>
6767
</div>
6868
</div>
@@ -81,7 +81,7 @@
8181
<div class="column-12 center center-text">
8282
<h1>Angular Dimple</h1>
8383
<p class="large">A mini-library of Angular directives for charting.</p>
84-
<a href="http://esripdx.github.io/angular-dimple" class="btn">View on GitHub</a>
84+
<a href="https://github.com/esripdx/angular-dimple" class="btn">View on GitHub</a>
8585
</div>
8686
</div>
8787
</div>

0 commit comments

Comments
 (0)