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: hapijs/code
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 41530c14f234accc0d94ab795f48951e22d522d4
Choose a base ref
...
head repository: hapijs/code
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e3d110feced57c09879855040434cc1b9e11b380
Choose a head ref
Loading
Showing with 2,178 additions and 1,391 deletions.
  1. +8 −17 .gitignore
  2. +3 −0 .npmignore
  3. +5 −3 .travis.yml
  4. +755 −0 API.md
  5. +3 −4 LICENSE
  6. +8 −656 README.md
  7. +36 −0 generate-api-toc.js
  8. +264 −99 lib/index.js
  9. +24 −24 package.json
  10. +1,072 −588 test/index.js
25 changes: 8 additions & 17 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,9 @@
.idea
*.iml
npm-debug.log
dump.rdb
node_modules
results.tap
results.xml
npm-shrinkwrap.json
config.json
.DS_Store
*/.DS_Store
*/*/.DS_Store
._*
*/._*
*/*/._*
**/node_modules
**/package-lock.json

coverage.*
lib-cov
complexity.md

**/.DS_Store
**/._*

**/*.pem
3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*
!lib/**
!.npmignore
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
language: node_js

node_js:
- 0.10
- 0.12
- iojs
- "8"
- "10"
- "11"
- "node"

sudo: false
Loading