diff --git a/CHANGELOG.md b/CHANGELOG.md index d59efb1f..e40186ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [1.1.79](https://github.com/wessberg/rollup-plugin-ts/compare/v1.1.78...v1.1.79) (2019-11-17) + +### Features + +- **hook:** add 'diagnostics' hook. Closes [#50](https://github.com/wessberg/rollup-plugin-ts/issues/50) ([75fb907](https://github.com/wessberg/rollup-plugin-ts/commit/75fb90739398162f7c0903da795b086a2d1135c9)) + ## [1.1.78](https://github.com/wessberg/rollup-plugin-ts/compare/v1.1.77...v1.1.78) (2019-11-13) ### Bug Fixes diff --git a/README.md b/README.md index 44f7e9ce..82361a9f 100644 --- a/README.md +++ b/README.md @@ -58,8 +58,9 @@ In comparison with the [official plugin](https://github.com/rollup/rollup-plugin - [Features](#features) - [Table of Contents](#table-of-contents) - [Install](#install) - - [NPM](#npm) + - [npm](#npm) - [Yarn](#yarn) + - [pnpm](#pnpm) - [Usage](#usage) - [Using it with just Typescript](#using-it-with-just-typescript) - [Typescript and tslib helpers](#typescript-and-tslib-helpers) @@ -79,6 +80,7 @@ In comparison with the [official plugin](https://github.com/rollup/rollup-plugin - [Advanced example of using Typescript, Babel, and Browserslists together](#advanced-example-of-using-typescript-babel-and-browserslists-together) - [Hooks](#hooks) - [The `outputPath` hook](#the-outputpath-hook) + - [The `diagnostics` hook](#the-diagnostics-hook) - [Full list of plugin options](#full-list-of-plugin-options) - [`transpiler`](#transpiler) - [`babelConfig`](#babelconfig) @@ -114,7 +116,7 @@ In comparison with the [official plugin](https://github.com/rollup/rollup-plugin ## Install -### NPM +### npm ``` $ npm install @wessberg/rollup-plugin-ts @@ -126,6 +128,12 @@ $ npm install @wessberg/rollup-plugin-ts $ yarn add @wessberg/rollup-plugin-ts ``` +### pnpm + +``` +$ pnpm add @wessberg/rollup-plugin-ts +``` + diff --git a/package.json b/package.json index c8fa347a..35c41d95 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@wessberg/rollup-plugin-ts", - "version": "1.1.78", + "version": "1.1.79", "description": "A Typescript Rollup plugin that bundles declarations and respects Browserslists", "scripts": { "generate:scaffold": "scaffold all --yes",