From a99c6cd9c1f47c73a27974bf2e8c570d3861ba33 Mon Sep 17 00:00:00 2001 From: ezolenko Date: Sun, 5 Mar 2017 14:13:54 -0700 Subject: [PATCH] - bug reporting section in readme --- README.md | 16 ++++++++++++++++ package.json | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b008ed1..9eb3b01 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # rollup-plugin-typescript2 + [![npm-version](https://img.shields.io/npm/v/rollup-plugin-typescript2.svg?maxAge=2592000)](https://npmjs.org/package/rollup-plugin-typescript2) ![npm-dependencies](https://img.shields.io/david/ezolenko/rollup-plugin-typescript2.svg?maxAge=2592000) @@ -64,4 +65,19 @@ Plugin takes following options: ### TypeScript version + This plugin currently requires TypeScript 2.0+. + +### Reporting bugs + +Report any bugs on github: . + +Attach your `tsconfig.json`, `package.json` (for versions of dependencies), rollup script and anything else that could influence module resolution, ambient types and typescript compilation. + +Check if problem is reproducible after running `npm prune` to clear any rogue types from npm_modules (by default typescript grabs all ambient types). + +Check if you get the same problem with `clean` option set to true (might indicate a bug in the cache). + +If makes sense, check if running `tsc` directly produces similar results. + +Attach plugin output with `verbosity` option set to 3 (this will list all files being transpiled and their imports). diff --git a/package.json b/package.json index 39408a9..b6f594e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rollup-plugin-typescript2", - "version": "0.2.0", + "version": "0.2.1", "description": "Seamless integration between Rollup and TypeScript. Now with errors.", "main": "dist/rollup-plugin-typescript2.cjs.js", "module": "dist/rollup-plugin-typescript2.es.js",