Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: remy/nodemon
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.3
Choose a base ref
...
head repository: remy/nodemon
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.4
Choose a head ref
  • 3 commits
  • 3 files changed
  • 2 contributors

Commits on Apr 28, 2020

  1. docs: update issue templates

    [skip ci]
    remy authored Apr 28, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    f18286e View commit details

Commits on May 2, 2020

  1. Copy the full SHA
    43def51 View commit details

Commits on May 14, 2020

  1. fix: add funding in package

    I'd be prepared to bet the house that npm 7's postinstall block and funding support pretty much kills support. Ah well.
    remy authored May 14, 2020
    Copy the full SHA
    a74f5dc View commit details
Showing with 41 additions and 2 deletions.
  1. +35 −0 .github/ISSUE_TEMPLATE/bug_report.md
  2. +1 −1 README.md
  3. +5 −1 package.json
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
name: Bug report
about: Create a report to help nodemon improve
title: ''
labels: ''
assignees: ''

---

<!--
when raising an issue please include replies to the following questions,
and if you're reporting a bug, please include details on how to replicate
and **assume** I have no knowledge of how your systems work - that includes
gulp, grunt, webpack, etc. Thank you so much <3
-->

- `nodemon -v`:
- `node -v`:
- Operating system/terminal environment:
- Using Docker? What image:
- Command you ran:


### Expected behaviour


### Actual behaviour


### Steps to reproduce


---

If applicable, please append the `--dump` flag on your command and include the output here **ensuring to remove any sensitive/personal details or tokens**.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@

nodemon is a tool that helps develop node.js based applications by automatically restarting the node application when file changes in the directory are detected.

nodemon does **not** require *any* additional changes to your code or method of development. nodemon is a replacement wrapper for `node`, to use `nodemon` replace the word `node` on the command line when executing your script.
nodemon does **not** require *any* additional changes to your code or method of development. nodemon is a replacement wrapper for `node`. To use `nodemon`, replace the word `node` on the command line when executing your script.

[![NPM version](https://badge.fury.io/js/nodemon.svg)](https://npmjs.org/package/nodemon)
[![Travis Status](https://travis-ci.org/remy/nodemon.svg?branch=master)](https://travis-ci.org/remy/nodemon) [![Backers on Open Collective](https://opencollective.com/nodemon/backers/badge.svg)](#backers) [![Sponsors on Open Collective](https://opencollective.com/nodemon/sponsors/badge.svg)](#sponsors)
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -66,5 +66,9 @@
"undefsafe": "^2.0.2",
"update-notifier": "^4.0.0"
},
"version": "0.0.0-development"
"version": "0.0.0-development",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/nodemon"
}
}