Skip to content

Commit ed5dfc3

Browse files
committed
Remove redundant comments from the gruntfile
1 parent 749c1c3 commit ed5dfc3

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed

gruntfile.js

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -468,20 +468,13 @@ module.exports = function(grunt) {
468468
typedoc: {
469469
build: {
470470
options: {
471-
// 'flag:undefined' will set flags without options.
472471
"module": 'commonjs',
473472
"target": 'es5',
474473
"out": '<%= grunt.option("out") || localCfg.outApiRefDir %>',
475474
"theme": '<%= grunt.option("theme") || "default" %>',
476-
//"json": './dist/doc.json',
477475
"name": 'NativeScript',
478476
"includeDeclarations": undefined,
479-
//"excludeExternals": undefined,
480-
//"externalPattern": './declarations.d.ts',
481-
"mode": "file",
482-
//"readme": "source/README.md",
483-
//"entryPoint": '"a-module"'
484-
// verbose: undefined
477+
"mode": "file"
485478
},
486479
src: localCfg.srcTsdFiles
487480
}
@@ -726,18 +719,18 @@ module.exports = function(grunt) {
726719
"ts:build-inplace",
727720
"generate-tns-core-modules-dev-dts"
728721
]);
729-
722+
730723
grunt.registerTask("apiref", [
731724
"clean:apiref",
732725
"typedoc:build"
733726
]);
734-
727+
735728
grunt.registerTask("articles", [
736729
"clean:articles",
737730
"copy:articleMDs",
738731
"exec:injectArticles"
739732
]);
740-
733+
741734
grunt.registerTask("docs", [
742735
"apiref",
743736
"articles"

0 commit comments

Comments
 (0)