Skip to content
This repository has been archived by the owner on Feb 20, 2020. It is now read-only.

Commit

Permalink
chore(release): 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ikatyang committed Aug 1, 2017
1 parent 0c8283a commit b61a3e0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
21 changes: 12 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

<a name="2.1.0"></a>
# [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)

Expand Down
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
Expand Down

0 comments on commit b61a3e0

Please sign in to comment.