From c84383c35bb1da809e7d0e40ce9732a4ac1f7e0c Mon Sep 17 00:00:00 2001 From: "Portugal, Marcelo" Date: Tue, 15 Nov 2016 23:36:01 -0500 Subject: [PATCH] Revert "docs(CHANGELOG.md): Attempting to add an automatic changelong using commitzen" This reverts commit c52e8c58c799d26f7d33408c5a64ddbfd5a8da90. --- CHANGELOG.md | 0 gruntfile.js | 10 ---------- package.json | 15 ++++++--------- 3 files changed, 6 insertions(+), 19 deletions(-) delete mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index e69de29..0000000 diff --git a/gruntfile.js b/gruntfile.js index 290d58c..6e8a26d 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -4,16 +4,6 @@ module.exports = function(grunt) { require('load-grunt-tasks')(grunt); grunt.initConfig({ - conventionalChangelog: { - options: { - changelogOpts: { - preset: 'angular' - } - }, - release: { - src: 'CHANGELOG.md' - } - }, eslint: { options: { outputFile: 'example/example-report.html', diff --git a/package.json b/package.json index d8b0415..c7faf1a 100644 --- a/package.json +++ b/package.json @@ -4,8 +4,12 @@ "description": "Detailed HTML reporter for ESLINT.", "main": "index.js", "scripts": { - "test": "grunt eslint", - "postversion": "grunt conventionalChangelog" + "test": "grunt eslint" + }, + "config": { + "commitizen": { + "path": "cz-conventional-changelog" + } }, "repository": { "type": "git", @@ -29,20 +33,13 @@ "lodash": "^4.16.6" }, "devDependencies": { - "cz-conventional-changelog": "^1.2.0", "eslint": "^3.9.1", "eslint-config-angular": "^0.5.0", "eslint-plugin-angular": "^1.4.1", "eslint-plugin-lodash": "^2.2.0", "grunt": "^1.0.1", "grunt-cli": "^1.2.0", - "grunt-conventional-changelog": "^6.1.0", "grunt-eslint": "^19.0.0", "load-grunt-tasks": "^3.5.2" - }, - "config": { - "commitizen": { - "path": "./node_modules/cz-conventional-changelog" - } } }