Skip to content

Commit fb75cc6

Browse files
committed
fix issue that build steps are always been missed.
1 parent 152f223 commit fb75cc6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ module.exports = function(grunt) {
3838

3939
grunt.registerTask('build', ['replace']);
4040
grunt.registerTask('deploy', ['build', 'gh-pages']);
41-
grunt.registerTask('server', ['connect']);
41+
grunt.registerTask('server', ['build', 'connect']);
4242

4343
};

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,8 @@ In order to run it locally you'll need to fetch some dependencies and a basic se
181181
5. deploy
182182

183183
```sh
184-
$ grunt build && grunt deploy
184+
$ git add * && git commit && git push
185+
$ grunt deploy
185186
```
186187

187188
## Contributing

dist/aha-table.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1121,7 +1121,6 @@
11211121
*
11221122
*/
11231123
-->
1124-
<dom-module id="aha-column"></dom-module>
11251124
<script>
11261125
Polymer({
11271126
is: "aha-column",

0 commit comments

Comments
 (0)