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: debug-js/debug
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b38458422b5aa8aa6d286b10dfe427e8a67e2b35
Choose a base ref
...
head repository: debug-js/debug
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f073e056f33efdd5b311381eb6bca2bc850745bf
Choose a head ref
Loading
Showing with 1,393 additions and 1,252 deletions.
  1. +1 −0 .coveralls.yml
  2. +14 −0 .eslintrc
  3. +7 −0 .gitignore
  4. +0 −3 .jshintrc
  5. +3 −0 .npmignore
  6. +20 −0 .travis.yml
  7. +395 −0 CHANGELOG.md
  8. +0 −195 History.md
  9. +19 −0 LICENSE
  10. +38 −16 Makefile
  11. +368 −0 README.md
  12. +0 −188 Readme.md
  13. +4 −3 bower.json
  14. +0 −19 component.json
  15. +0 −503 dist/debug.js
  16. +0 −26 example/browser.html
  17. +0 −10 example/wildcards.js
  18. +28 −0 examples/browser/colors.html
  19. +3 −3 {example → examples/node}/app.js
  20. +8 −0 examples/node/colors.js
  21. +1 −1 {example → examples/node}/stdout.js
  22. +10 −0 examples/node/wildcards.js
  23. +2 −2 {example → examples/node}/worker.js
  24. +70 −0 karma.conf.js
  25. +1 −209 node.js
  26. +22 −13 package.json
  27. +45 −18 { → src}/browser.js
  28. +71 −43 { → src}/debug.js
  29. +10 −0 src/index.js
  30. +186 −0 src/node.js
  31. +67 −0 test/debug_spec.js
1 change: 1 addition & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve
14 changes: 14 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"env": {
"browser": true,
"node": true
},
"globals": {
"chrome": true
},
"rules": {
"no-console": 0,
"no-empty": [1, { "allowEmptyCatch": true }]
},
"extends": "eslint:recommended"
}
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -2,3 +2,10 @@
node_modules
*.sock
build
npm-debug.log
dist
coverage

# lockfiles
yarn.lock
package-lock.json
3 changes: 0 additions & 3 deletions .jshintrc

This file was deleted.

3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -4,3 +4,6 @@ examples
example
*.sock
dist
yarn.lock
coverage
bower.json
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
sudo: false

language: node_js

node_js:
- "4"
- "6"
- "8"

install:
- make install

script:
- make lint
- make test

matrix:
include:
- node_js: '8'
env: BROWSER=1
Loading