From a8aa89aa5138e886ecc62ee7f2d8783282eb04a6 Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Sat, 16 Jun 2018 23:25:05 +0200 Subject: [PATCH] package.json: Adjust changelog labels --- package.json | 11 +++++------ src/configuration.spec.ts | 11 +++++------ 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/package.json b/package.json index 53cf85d4..889e9bed 100644 --- a/package.json +++ b/package.json @@ -62,12 +62,11 @@ "changelog": { "repo": "lerna/lerna-changelog", "labels": { - "Tag: Breaking Change": ":boom: Breaking Change", - "Tag: Enhancement": ":rocket: Enhancement", - "Tag: Bug Fix": ":bug: Bug Fix", - "Tag: Polish": ":nail_care: Polish", - "Tag: Documentation": ":memo: Documentation", - "Tag: Internal": ":house: Internal" + "breaking": ":boom: Breaking Change", + "enhancement": ":rocket: Enhancement", + "bug": ":bug: Bug Fix", + "documentation": ":memo: Documentation", + "internal": ":house: Internal" }, "cacheDir": ".changelog" }, diff --git a/src/configuration.spec.ts b/src/configuration.spec.ts index ae426bc0..1598aa37 100644 --- a/src/configuration.spec.ts +++ b/src/configuration.spec.ts @@ -13,12 +13,11 @@ describe("Configuration", function() { expect(result).toEqual({ repo: "lerna/lerna-changelog", labels: { - "Tag: Breaking Change": ":boom: Breaking Change", - "Tag: Enhancement": ":rocket: Enhancement", - "Tag: Bug Fix": ":bug: Bug Fix", - "Tag: Polish": ":nail_care: Polish", - "Tag: Documentation": ":memo: Documentation", - "Tag: Internal": ":house: Internal", + breaking: ":boom: Breaking Change", + enhancement: ":rocket: Enhancement", + bug: ":bug: Bug Fix", + documentation: ":memo: Documentation", + internal: ":house: Internal", }, cacheDir: ".changelog", rootPath,