From b61a3e08725c6db77204147cd072fbc293e3f065 Mon Sep 17 00:00:00 2001 From: ikatyang Date: Tue, 1 Aug 2017 18:21:04 +0800 Subject: [PATCH] chore(release): 2.1.0 --- CHANGELOG.md | 21 ++++++++++++--------- package.json | 8 +++++--- 2 files changed, 17 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77426d5..10854e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,17 @@ # Change Log -All changes to this project will be documented in this file. - -> **Tags:** -> - 💥 [Breaking Change] -> - 🚀 [New Feature] -> - 🐛 [Bug Fix] -> - 📝 [Documentation] -> - 🏠 [Internal] -> - 💅 [Polish] +All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + + +# [2.1.0](https://github.com/ikatyang/dts-element/compare/v2.0.5...v2.1.0) (2017-08-01) + + +### Features + +* **EnumDeclaration:** support `const` option ([#20](https://github.com/ikatyang/dts-element/issues/20)) ([024cbf9](https://github.com/ikatyang/dts-element/commit/024cbf9)) +* **utils:** add type guards ([#19](https://github.com/ikatyang/dts-element/issues/19)) ([79de10c](https://github.com/ikatyang/dts-element/commit/79de10c)) + + ## v2.0.5 (2017-06-26) diff --git a/package.json b/package.json index 0731619..d2deb55 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dts-element", - "version": "2.0.5", + "version": "2.1.0", "description": "A DOM library for generation TypeScript declaration (.d.ts) files", "main": "lib/index.js", "types": "lib/index.d.ts", @@ -9,13 +9,15 @@ "author": "ikatyang", "license": "MIT", "scripts": { - "prepublish": "yarn run build && yarn run docs", + "prepublish": "yarn run build", "prebuild": "rm -rf ./lib", "build": "tsc -p ./tsconfig.build.json", "lint": "tslint --type-check -p ./tsconfig.json", "test": "jest -c ./jest.json", "predocs": "rm -rf ./docs", - "docs": "typedoc --out ./docs --mode file --exclude '{**/{__tests__,tests,parsers}/**/*,**/utils.ts}' --excludeExternals --excludePrivate" + "docs": "typedoc --out ./docs --mode file --exclude '{**/{__tests__,tests,parsers}/**/*,**/utils.ts}' --excludeExternals --excludePrivate", + "prerelease": "yarn run docs && git add ./docs --all && git commit -m 'docs: update documentation'", + "release": "standard-version" }, "dependencies": { "typescript": "^2.4.1"