Skip to content

Commit f0e75d0

Browse files
committed
chore: update dependencies
1 parent baed301 commit f0e75d0

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

exceptions.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"E_CANNOT_LOOKUP_ROUTE": {
3-
"message": "Cannot find route for \"{identifier}\" identifier",
3+
"message": "Cannot find route for \"{{ identifier }}\" identifier",
44
"code": "E_CANNOT_FIND_ROUTE",
55
"status": 500,
66
"help": [
@@ -10,7 +10,7 @@
1010
]
1111
},
1212
"E_CANNOT_SERIALIZE_RESPONSE_BODY": {
13-
"message": "Unable to send HTTP response. Cannot serialize \"{dataType}\" to a string",
13+
"message": "Unable to send HTTP response. Cannot serialize \"{{ dataType }}\" to a string",
1414
"code": "E_CANNOT_SERIALIZE_RESPONSE_BODY",
1515
"status": 500,
1616
"help": [
@@ -21,7 +21,7 @@
2121
]
2222
},
2323
"E_HTTP_EXCEPTION": {
24-
"message": "Request aborted with status code {status}",
24+
"message": "Request aborted with status code {{ status }}",
2525
"code": "E_HTTP_EXCEPTION",
2626
"help": ["A generic exception usually raised using \"response.abort\""]
2727
},
@@ -35,7 +35,7 @@
3535
]
3636
},
3737
"E_DUPLICATE_ROUTE_NAME": {
38-
"message": "Duplicate route name \"{name}\"",
38+
"message": "Duplicate route name \"{{ name }}\"",
3939
"code": "E_DUPLICATE_ROUTE_NAME",
4040
"status": 500,
4141
"help": [
@@ -44,7 +44,7 @@
4444
]
4545
},
4646
"E_DUPLICATE_ROUTE": {
47-
"message": "Duplicate route \"{method}:{pattern}\"",
47+
"message": "Duplicate route \"{{ method }}:{{ pattern }}\"",
4848
"code": "E_DUPLICATE_ROUTE",
4949
"status": 500,
5050
"help": [
@@ -53,17 +53,17 @@
5353
]
5454
},
5555
"E_DUPLICATE_ROUTE_PARAM": {
56-
"message": "The \"{param}\" param is mentioned twice in the route pattern \"{pattern}\"",
56+
"message": "The \"{{ param }}\" param is mentioned twice in the route pattern \"{{ pattern }}\"",
5757
"code": "E_DUPLICATE_ROUTE_PARAM",
5858
"status": 500
5959
},
6060
"E_ROUTE_NOT_FOUND": {
61-
"message": "Cannot {method}:{url}",
61+
"message": "Cannot {{ method }}:{{ url }}",
6262
"code": "E_ROUTE_NOT_FOUND",
6363
"status": 404
6464
},
6565
"E_MISSING_NAMED_MIDDLEWARE": {
66-
"message": "Cannot find a middleware named \"{name}\"",
66+
"message": "Cannot find a middleware named \"{{ name }}\"",
6767
"code": "E_MISSING_NAMED_MIDDLEWARE",
6868
"status": 500,
6969
"help": [
@@ -72,7 +72,7 @@
7272
]
7373
},
7474
"E_CANNOT_MAKE_ROUTE_URL": {
75-
"message": "\"{param}\" param is required to make URL for \"{pattern}\" route",
75+
"message": "\"{{ param }}\" param is required to make URL for \"{{ pattern }}\" route",
7676
"code": "E_CANNOT_MAKE_ROUTE_URL",
7777
"status": 500,
7878
"help": [

npm-audit.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ <h5 class="card-title">
5555
<div class="card">
5656
<div class="card-body">
5757
<h5 class="card-title">
58-
July 24th 2020, 7:01:26 am
58+
July 24th 2020, 9:51:53 am
5959
</h5>
6060
<p class="card-text">Last updated</p>
6161
</div>

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
"anyBranch": false
104104
},
105105
"dependencies": {
106-
"@poppinss/utils": "^2.4.1",
106+
"@poppinss/utils": "^2.5.0",
107107
"accepts": "^1.3.7",
108108
"co-compose": "^6.0.1",
109109
"content-disposition": "^0.5.3",

0 commit comments

Comments
 (0)