Skip to content

Commit

Permalink
chore(todo): Add todos for travis
Browse files Browse the repository at this point in the history
  • Loading branch information
c0bra committed Dec 13, 2013
1 parent cdab727 commit 543748f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -194,3 +194,4 @@ Sauce-Connect.jar
*.log
docs
bower_components
.grunt
12 changes: 4 additions & 8 deletions Gruntfile.js
Expand Up @@ -60,12 +60,12 @@ module.exports = function(grunt) {
dist: {
// paths: ['/bower_components/bootstrap'],
files: {
'dist/<%= pkg.name %>.css': 'src/less/main.less',
'dist/release/<%= pkg.name %>.css': 'src/less/main.less',
}
},
min: {
files: {
'dist/<%= pkg.name %>.min.css': 'src/less/main.less',
'dist/release/<%= pkg.name %>.min.css': 'src/less/main.less',
},
options: {
compress: true
Expand All @@ -79,11 +79,7 @@ module.exports = function(grunt) {
},
concat: {
src: '<%= concat.dist.dest %>',
dest: 'dist/<%= pkg.name %>.min.js'
},
doc: {
src: '<%= concat.dist.dest %>',
dest: 'docs/js/<%= pkg.name %>.min.js'
dest: '<%= dist %>/release/<%= pkg.name %>.min.js'
}
},

Expand Down Expand Up @@ -240,7 +236,7 @@ module.exports = function(grunt) {
styles: [
'misc/doc/css/prettify.css',
'misc/doc/css/bootstrap-flatly.css',
'<%= dist %>/ui-grid.css'
'<%= dist %>/release/ui-grid.css'
],
title: 'UI Grid',
html5Mode: false,
Expand Down
7 changes: 5 additions & 2 deletions TODO.md
@@ -1,3 +1,6 @@
1. Copy angular-animate, prettify.js and marked.js into the docs/js dir separately from grunt-ngdocs. It's causing them to show up in `<script>` tags in the Examples which isn't what we want
1. Add --browsers option for testing on saucelabs with specific browser(s)
1. Make karmangular run in `watch` mode and in singlerun too.
1. Fix saucelabs hanging tests
1. Make sure failing saucelabs tests don't cause the build to fail. Only if the normal test run fails

1. [DONE] Add --browsers option for testing on saucelabs with specific browser(s)
1. [DONE] Make karmangular run in `watch` mode and in singlerun too.

0 comments on commit 543748f

Please sign in to comment.