From 1b9858aae6b8400c393b57099d418ebc405fb3ff Mon Sep 17 00:00:00 2001 From: Mathew Henson Date: Tue, 7 Mar 2017 11:58:27 +0000 Subject: [PATCH] Updated comments and formatting --- git-logs.js | 4 ++-- package.json | 8 ++++---- tsconfig.json | 48 ++++++++++++++++++++++++------------------------ 3 files changed, 30 insertions(+), 30 deletions(-) diff --git a/git-logs.js b/git-logs.js index 2f8186f..251fad9 100644 --- a/git-logs.js +++ b/git-logs.js @@ -28,7 +28,7 @@ child = exec( 'git log ' + prevTag + '...' + nextTag + ' --pretty=format:"{ \\"a if ( err ) throw err; console.log( 'It\'s saved!' ); - }); + } ); } catch ( err ) { console.log( 'Could not write file: ' + err ); @@ -43,4 +43,4 @@ child = exec( 'git log ' + prevTag + '...' + nextTag + ' --pretty=format:"{ \\"a if ( error !== null ) { console.log( 'exec error: ' + error ); } -}); \ No newline at end of file +} ); \ No newline at end of file diff --git a/package.json b/package.json index 078807b..62d5ad6 100644 --- a/package.json +++ b/package.json @@ -7,9 +7,9 @@ "license": "MIT", "devDependencies": { "gulp": "^3.9.1", - "typescript": "^2.0.3", - "gulp-typescript": "^3.0.2", - "tslint": "^3.15.1", - "gulp-tslint": "^6.1.2" + "typescript": "^2.2.1", + "gulp-typescript": "^3.1.5", + "tslint": "^4.5.1", + "gulp-tslint": "^7.1.0" } } \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 8c11900..8f383f4 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,26 +1,26 @@ { - "compilerOptions": { - "module": "commonjs", - "removeComments": false, - "noEmitOnError": true, - "declaration": false, - "sourceMap": false, - "preserveConstEnums": true, - "target": "es6", - "noImplicitAny": false, - "allowUnreachableCode": false, - "allowUnusedLabels": false, - "outDir": "dist", - "strictNullChecks": true, - "noUnusedLocals": true, - "noUnusedParameters": false - }, - "include": [ - "src/references.d.ts", - "src/**/*.ts" - ], - "exclude": [ - "src/definitions/generated/*", - "src/definitions/required/**/*" - ] + "compilerOptions": { + "module": "commonjs", + "removeComments": false, + "noEmitOnError": true, + "declaration": false, + "sourceMap": false, + "preserveConstEnums": true, + "target": "es6", + "noImplicitAny": false, + "allowUnreachableCode": false, + "allowUnusedLabels": false, + "outDir": "dist", + "strictNullChecks": true, + "noUnusedLocals": true, + "noUnusedParameters": false + }, + "include": [ + "src/references.d.ts", + "src/**/*.ts" + ], + "exclude": [ + "src/definitions/generated/*", + "src/definitions/required/**/*" + ] } \ No newline at end of file