Skip to content

Commit

Permalink
Merge 6d32046 into c689bf4
Browse files Browse the repository at this point in the history
  • Loading branch information
devinivy committed Nov 5, 2019
2 parents c689bf4 + 6d32046 commit c92c3e7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -3,6 +3,7 @@ language: node_js
node_js:
- "8"
- "10"
- "12"
- "node"

after_script: "npm run coveralls"
2 changes: 1 addition & 1 deletion API.md
Expand Up @@ -108,7 +108,7 @@ Files will always export an array of values (representing multiple API calls) or

For example, a file defining a new server method (representing a call to `server.method(name, method)`) would export an object of the format `{ name, method }`.

Lastly, files can always export a function with signature `function(server, options)` that returns the intended value or array of values.
Lastly, files can always export a function with signature `function(server, options)` or `async function(server, options)` that returns the intended value or array of values.

Here's the complete rundown of how files and directories are mapped to API calls. The order here reflects the order in which the calls would be made.

Expand Down
14 changes: 7 additions & 7 deletions package.json
Expand Up @@ -34,27 +34,27 @@
},
"homepage": "https://github.com/hapipal/haute-couture#readme",
"dependencies": {
"@hapi/hoek": "6.x.x",
"@hapi/hoek": "8.x.x",
"@hapi/topo": "3.x.x",
"haute": "3.x.x",
"parent-module": "1.x.x"
"haute": ">=3.1.x <4",
"parent-module": "2.x.x"
},
"peerDependencies": {
"@hapi/hapi": ">=17 <19"
},
"devDependencies": {
"@hapi/catbox-memory": "4.x.x",
"@hapi/code": "5.x.x",
"@hapi/code": "6.x.x",
"@hapi/hapi": "18.x.x",
"@hapi/joi": "15.x.x",
"@hapi/lab": "18.x.x",
"@hapi/joi": "16.x.x",
"@hapi/lab": "20.x.x",
"@hapi/nes": "11.x.x",
"@hapi/teamwork": "3.x.x",
"@hapi/vision": "5.x.x",
"@softonic/hapi-error-logger": "2.x.x",
"coveralls": "3.x.x",
"glob": "7.x.x",
"knex": "0.16.x",
"knex": "0.20.x",
"objection": "1.x.x",
"renamer": "1.x.x",
"schmervice": "1.x.x",
Expand Down

0 comments on commit c92c3e7

Please sign in to comment.