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: ColemanGariety/gulp-nodemon
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 525457251c112ed39a011f144978c13edd8dad96
Choose a base ref
...
head repository: ColemanGariety/gulp-nodemon
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7fcbc0638023630a98024db622ada0f6e7e37d47
Choose a head ref
  • 10 commits
  • 3 files changed
  • 3 contributors

Commits on Dec 5, 2018

  1. Version bump

    Jackson Gariety committed Dec 5, 2018
    Copy the full SHA
    028d498 View commit details

Commits on Oct 12, 2019

  1. Bump lodash from 2.4.2 to 4.17.15

    Bumps [lodash](https://github.com/lodash/lodash) from 2.4.2 to 4.17.15.
    - [Release notes](https://github.com/lodash/lodash/releases)
    - [Commits](lodash/lodash@2.4.2...4.17.15)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Oct 12, 2019
    Copy the full SHA
    f634d93 View commit details
  2. Bump mixin-deep from 1.3.1 to 1.3.2

    Bumps [mixin-deep](https://github.com/jonschlinkert/mixin-deep) from 1.3.1 to 1.3.2.
    - [Release notes](https://github.com/jonschlinkert/mixin-deep/releases)
    - [Commits](jonschlinkert/mixin-deep@1.3.1...1.3.2)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Oct 12, 2019
    Copy the full SHA
    c5f4120 View commit details
  3. Bump growl from 1.8.1 to 1.10.5

    Bumps [growl](https://github.com/tj/node-growl) from 1.8.1 to 1.10.5.
    - [Release notes](https://github.com/tj/node-growl/releases)
    - [Changelog](https://github.com/tj/node-growl/blob/master/History.md)
    - [Commits](tj/node-growl@v1.8.1...v1.10.5)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Oct 12, 2019
    Copy the full SHA
    5bd5530 View commit details
  4. Bump diff from 1.0.8 to 3.5.0

    Bumps [diff](https://github.com/kpdecker/jsdiff) from 1.0.8 to 3.5.0.
    - [Release notes](https://github.com/kpdecker/jsdiff/releases)
    - [Changelog](https://github.com/kpdecker/jsdiff/blob/master/release-notes.md)
    - [Commits](kpdecker/jsdiff@v1.0.8...v3.5.0)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Oct 12, 2019
    Copy the full SHA
    3b01d33 View commit details

Commits on Mar 4, 2020

  1. Merge pull request #171 from JacksonGariety/dependabot/npm_and_yarn/l…

    …odash-4.17.15
    
    Bump lodash from 2.4.2 to 4.17.15
    ColemanGariety authored Mar 4, 2020
    Copy the full SHA
    a8d4391 View commit details
  2. Merge pull request #172 from JacksonGariety/dependabot/npm_and_yarn/m…

    …ixin-deep-1.3.2
    
    Bump mixin-deep from 1.3.1 to 1.3.2
    ColemanGariety authored Mar 4, 2020
    Copy the full SHA
    fe95e64 View commit details
  3. Merge pull request #173 from JacksonGariety/dependabot/npm_and_yarn/g…

    …rowl-1.10.5
    
    Bump growl from 1.8.1 to 1.10.5
    ColemanGariety authored Mar 4, 2020
    Copy the full SHA
    7c0c02e View commit details
  4. Merge pull request #174 from JacksonGariety/dependabot/npm_and_yarn/d…

    …iff-3.5.0
    
    Bump diff from 1.0.8 to 3.5.0
    ColemanGariety authored Mar 4, 2020
    Copy the full SHA
    5100088 View commit details
  5. NPM audit. Closes #176.

    ColemanGariety committed Mar 4, 2020
    Copy the full SHA
    7fcbc06 View commit details
Showing with 562 additions and 1,738 deletions.
  1. +554 −1,727 package-lock.json
  2. +3 −2 package.json
  3. +5 −9 server.js
2,281 changes: 554 additions & 1,727 deletions package-lock.json

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gulp-nodemon",
"version": "2.4.1",
"version": "2.5.0",
"description": "it's gulp + nodemon + convenience",
"main": "index.js",
"scripts": {
@@ -30,13 +30,14 @@
"dependencies": {
"colors": "^1.2.1",
"gulp": "^4.0.0",
"nodemon": "^1.18.7"
"nodemon": "^2.0.2"
},
"devDependencies": {
"coffee-script": "^1.7.1",
"gulp-jshint": "^2.1.0",
"gulp-mocha": "^6.0.0",
"is-running": "^2.1.0",
"jshint": "^2.11.0",
"should": "^13.2.3"
},
"directories": {
14 changes: 5 additions & 9 deletions server.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
const http = require('http')

const port = 8000
const hostname = '0.0.0.0'
const http = require('http');

const port = 8000;
const hostname = '0.0.0.0';

http.createServer((req, res) => res.end(`
Hello World, from the future!
It's ${
new Date().getFullYear() + Math.ceil(Math.random() * 100)
} here, how is it going back there in ${new Date().getFullYear()}? :)
It's ${new Date().getFullYear() + Math.ceil(Math.random() * 100)} here, how is it going back there in ${new Date().getFullYear()}? :)
`))
.listen(port, hostname, () => console.info(`listening on http://${hostname}:${port}`))
`)).listen(port, hostname, () => console.info(`listening on http://${hostname}:${port}`));