Permalink
Please sign in to comment.
Showing
with
74 additions
and 32 deletions.
- +4 −1 .gitignore
- +3 −1 .travis.yml
- +46 −0 CHANGELOG.md
- +9 −27 README.md
- +7 −0 dangerfile.js
- +5 −3 package.json
46
CHANGELOG.md
| @@ -0,0 +1,46 @@ | ||
| +## Changelog | ||
| + | ||
| +### 2.3.5 (Next) | ||
| + | ||
| +* [#90](https://github.com/matt-kruse/alexa-app/pull/90): Added [Danger](http://danger.systems), PR linter - [@dblock](https://github.com/dblock). | ||
| +* Your contribution here. | ||
| + | ||
| +### 2.3.4 (May 23, 2016) | ||
| + | ||
| +* [#68](https://github.com/matt-kruse/alexa-app/pull/68): Added support for custom slot types - [@mutexkid](https://github.com/mutexkid). | ||
| + | ||
| +### 2.3.3 (May 7, 2016) | ||
| + | ||
| +* [#59](https://github.com/matt-kruse/alexa-app/pull/59): Added full card type support - [@doapp-ryanp](https://github.com/doapp-ryanp). | ||
| + | ||
| +### 2.3.2 (Jan 11, 2016) | ||
| + | ||
| +* [#47](https://github.com/matt-kruse/alexa-app/pull/47): Fixed number output in SSML tags back to being digits - [@rickwargo](https://github.com/rickwargo). | ||
| +* [#60](https://github.com/matt-kruse/alexa-app/pull/60): Added automated tests for SSML - [@mutexkid](https://github.com/mutexkid). | ||
| +* [#57](https://github.com/matt-kruse/alexa-app/pull/57): Removed support for no longer used card subtitle - [@rickwargo](https://github.com/rickwargo). | ||
| + | ||
| +### 2.3.0 (Jan 8, 2016) | ||
| + | ||
| +* [#46](https://github.com/matt-kruse/alexa-app/pull/46): Added "numbered" to the depencies list in package.json - [@mreinstein](https://github.com/mreinstein). | ||
| + | ||
| +### 2.3.0 (Jan 4, 2016) | ||
| + | ||
| +* [#31](https://github.com/matt-kruse/alexa-app/pull/31): Added support for SSML - [@rickwargo](https://github.com/rickwargo). | ||
| +* [#38](https://github.com/matt-kruse/alexa-app/pull/38): Added `.linkAccount()` method to return Link Account card - [@christianewillman](https://github.com/christianewillman). | ||
| +* [#37](https://github.com/matt-kruse/alexa-app/pull/37): Added `request.sessionDetails.accessToken` for skills using account linking - [@christianewillman](https://github.com/christianewillman). | ||
| +* Added MIT license file - [@matt-kruse](https://github.com/matt-kruse). | ||
| + | ||
| +### 2.2.0 (Oct 26, 2015) | ||
| + | ||
| +* Bumped alexa-utterances to version 0.1.0 - [@matt-kruse](https://github.com/matt-kruse). | ||
| +* [#27](https://github.com/matt-kruse/alexa-app/issues/27): Added support for the `exhaustiveUtterances` option in alexa-utterances - [@matt-kruse](https://github.com/matt-kruse). | ||
| +* By default, alexa-app utterances now avoid the cartesian product of all slot values - [@matt-kruse](https://github.com/matt-kruse). | ||
| + | ||
| +### 2.1.5 (Oct 25, 2015) | ||
| + | ||
| +* [#26](https://github.com/matt-kruse/alexa-app/issues/26): Externalized the generation of utterances to the new alexa-utterances module (Issue #26) - [@matt-kruse](https://github.com/matt-kruse). | ||
| + | ||
| +### 2.1.4 (Sep 14, 2015) | ||
| + | ||
| +* [#17](https://github.com/matt-kruse/alexa-app/issues/17): Remove hyphen from generated numbers in utterances (Issue #17) | ||
| +* [#18](https://github.com/matt-kruse/alexa-app/issues/18): Collapse multiple whitespaces to one space in utterances - [@matt-kruse](https://github.com/matt-kruse). |
| @@ -0,0 +1,7 @@ | ||
| +import { danger, warn } from "danger" | ||
| + | ||
| +// did you forget to update changelog? | ||
| +const hasChangelog = danger.git.modified_files.includes("CHANGELOG.md"); | ||
| +if (! hasChangelog) { | ||
| + warn("Did you forget to update CHANGELOG.md?"); | ||
| +} |
0 comments on commit
10c43be