Skip to content

Commit b91b390

Browse files
author
Isaac Hudson
committed
Fixing gruntfile so that it doesn't create specs when running tests
1 parent 4353bc8 commit b91b390

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gruntfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,10 @@ module.exports = function(grunt)
106106
grunt.loadNpmTasks('grunt-mocha-istanbul');
107107

108108
grunt.registerTask('default', ['tslint', 'ts:typedoc', 'string-replace:version']);
109-
grunt.registerTask('build_and_test', ['default', 'specs', 'copy', 'mocha_istanbul:coverage']);
110-
grunt.registerTask('specs', ['clean:specsBefore', 'build-specs', 'clean:specsAfter']);
109+
grunt.registerTask('build_and_test', ['default', 'copy', 'mocha_istanbul:coverage']);
110+
grunt.registerTask('specs', ['clean:specsBefore', 'update-specs', 'clean:specsAfter']);
111111

112-
grunt.registerTask('build-specs', function() {
112+
grunt.registerTask('update-specs', function() {
113113
var FS = require('fs-extra');
114114
var Path = require('path');
115115
var TypeDoc = require('./');

0 commit comments

Comments
 (0)