Skip to content

Commit

Permalink
Merge pull request #556 from excaliburjs/release-prep
Browse files Browse the repository at this point in the history
Final review release prep
  • Loading branch information
eonarheim committed Jan 20, 2016
2 parents b7da9d7 + d0a3031 commit d7be75f
Show file tree
Hide file tree
Showing 32 changed files with 12,489 additions and 10,101 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ ehthumbs.db
Thumbs.db

# Build
.vs/
build/
bld/
bin/
Expand Down
18 changes: 17 additions & 1 deletion GruntFile.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,20 @@ module.exports = function (grunt) {
stdout: true,
failOnError: true
}
},

//
// Compile visual tests
//
visual: {
command: function() {
var files = grunt.file.expand("./sandbox/web/tests/*/*.ts");
return 'tsc ' + files.join(' ');
},
options: {
stdout: true,
failOnError: true
}
}

},
Expand Down Expand Up @@ -208,9 +222,11 @@ module.exports = function (grunt) {

// Compile sample game
grunt.registerTask('sample', ['shell:sample']);

grunt.registerTask('visual', ['shell:visual']);

// Default task - compile, test, build dists
grunt.registerTask('default', ['tslint:src', 'tests', 'coveralls', 'shell:tsc', 'minified', 'concat', 'copy', 'sample', 'shell:nuget']);
grunt.registerTask('default', ['tslint:src', 'tests', 'coveralls', 'shell:tsc', 'minified', 'concat', 'copy', 'sample', 'visual', 'shell:nuget']);

grunt.registerTask('compile', ['shell:tsc', 'minified', 'concat', 'copy', 'shell:nuget'])

Expand Down
Binary file removed dist/Excalibur.0.5.1.nupkg
Binary file not shown.
Binary file added dist/Excalibur.0.6.0.nupkg
Binary file not shown.
Loading

0 comments on commit d7be75f

Please sign in to comment.