Skip to content

Commit

Permalink
github: use envinfo for getting versions in issue reports (#245)
Browse files Browse the repository at this point in the history
- replace the version list with a copy+paste this envinfo command,
  copy back the output
  - uses a modified, shortened variant of something being used
    successfully downstream in TSDX: jaredpalmer/tsdx@349f299
- this should make reporting versions zero-effort and thereby
  significantly decrease non-reporting by making the hard thing easy
  - personally have experienced issues that didn't report but version
    was very relevant to the issue
  - also some folks report "latest" or used carets, which lack posterity
    or are confusing
  • Loading branch information
agilgur5 authored Oct 15, 2020
1 parent fc2274d commit fadafef
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .github/issue_template.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
#### What happens and why it is wrong

#### Environment
#### Environment

<!--- describe your environment if it is relevant to the problem --->

#### Versions
- typescript:
- rollup:
- rollup-plugin-typescript2:
##### Versions

<!--
PLEASE RUN THIS COMMAND INSIDE YOUR PROJECT:
npx envinfo --npmPackages typescript,rollup,rollup-plugin-typescript2
AND PASTE ITS CONTENTS BELOW INSIDE THE CODE SNIPPET vvvvvvvvv
-->

```text
```

#### rollup.config.js

Expand Down

0 comments on commit fadafef

Please sign in to comment.