Run tslint only once :-)

Two grunt tasks had it as a dependency, and that triggered two runs.
This commit is contained in:
Hristo Deshev
2016-02-01 17:00:20 +02:00
parent e452aff658
commit c3b4d40d0b

View File

@@ -628,13 +628,13 @@ module.exports = function(grunt) {
//alias just-build for backwards compatibility
grunt.registerTask("just-build", ["build-all"]);
grunt.registerTask("build-all", (skipTsLint ? [] : ["tslint:build"]).concat([
grunt.registerTask("build-all", [
"pack-modules",
"collect-apps-raw-files",
"distribute-apps-files",
"distribute-ts-apps-files",
]));
]);
grunt.registerTask("node-tests", [
"clean:nodeTests",