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: 68b4dc8d8549d3924673c38fccc5d594f0a38da1
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: 80ef62a3af4df95250d77d64edfc3d0e1667e7e8
Choose a head ref
Loading
Showing with 129 additions and 659 deletions.
  1. +0 −13 .babelrc
  2. +0 −1 .coveralls.yml
  3. +0 −14 .eslintrc
  4. +28 −0 .github/ISSUE_TEMPLATE.md
  5. +17 −0 .github/PULL_REQUEST_TEMPLATE.md
  6. +2 −0 .travis.yml
  7. +0 −395 CHANGELOG.md
  8. +0 −29 bower.json
  9. +0 −28 examples/browser/colors.html
  10. +0 −20 examples/node/app.js
  11. +0 −8 examples/node/colors.js
  12. +0 −18 examples/node/stdout.js
  13. +0 −10 examples/node/wildcards.js
  14. +0 −27 examples/node/worker.js
  15. +24 −27 karma.conf.js
  16. +19 −23 package.json
  17. +5 −10 src/browser.js
  18. +5 −5 src/common.js
  19. +29 −31 test.js
13 changes: 0 additions & 13 deletions .babelrc

This file was deleted.

1 change: 0 additions & 1 deletion .coveralls.yml

This file was deleted.

14 changes: 0 additions & 14 deletions .eslintrc

This file was deleted.

28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!--
DO NOT SUBMIT ISSUES ASKING TO REMOVE ES6.
IT WILL BE CLOSED.
IT WILL BE LOCKED.
We use ES2015+ for a reason. Modern best
practices dictate the use of tooling like
Babel and @babel/preset-env in order to
target the browsers that make sense for
your project.
For more information, please see:
https://github.com/sindresorhus/ama/issues/446#issuecomment-281014491
Please keep in mind that `debug` is downloaded,
installed, transpiled and used millions of times
*per day*. If you have an error with `debug`, it's
most likely your own configuration (e.g. with Babel,
Webpack, etc).
Unless you post ample evidence you have tried
to fix this yourself, it will most likely
be determined that your issue is localized
to your project - not `debug`.
-->
17 changes: 17 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!--
DO NOT SUBMIT PULL REQUESTS REMOVING ES6.
IT WILL BE CLOSED.
IT WILL NOT BE MERGED.
We use ES2015+ for a reason. Modern best
practices dictate the use of tooling like
Babel and @babel/preset-env in order to
target the browsers that make sense for
your project.
For more information, please see:
https://github.com/sindresorhus/ama/issues/446#issuecomment-281014491
-->
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -6,10 +6,12 @@ node_js:
- "6"
- "8"
- "10"
- "11"

install:
- npm install

script:
- npm run lint
- npm test
- npm run test:coverage
Loading