diff --git a/.travis.yml b/.travis.yml index 889d766..062609c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,3 +5,5 @@ node_js: - "8" after_script: - npm run coveralls +notifications: + webhooks: https://app.fossa.io/hooks/travisci diff --git a/README.md b/README.md index 64a0533..9b9bdd6 100644 --- a/README.md +++ b/README.md @@ -25,14 +25,14 @@ Pass this resulting function any type of object, including functions. ## Example -(In these examples package.json has a name of `super-server`) +(In these examples package.json has a name of `super-server` which you can see in the output) Basic Example ```js const debug = require('debug3')('http'); -debug('This is a debug test!', [1, 2, 3]); +debug('This is a debug test!', [1, 2, 3]); // Output: **super-server:http** This is a debug test! [1, 2, 3] ```