Skip to content

Commit

Permalink
chore: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
v1rtl committed Oct 15, 2021
1 parent 9ae2775 commit 51cc1f0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
11 changes: 9 additions & 2 deletions egg.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,15 @@
"description": "Tiny body parser for Deno. Port of the milliparsec library.",
"homepage": "https://github.com/deno-libs/parsec",
"version": "0.1.0",
"files": ["mod.ts", "README.md"],
"ignore": ["examples", ".github", "test"],
"files": [
"mod.ts",
"README.md"
],
"ignore": [
"examples",
".github",
"test"
],
"checkFormat": false,
"checkTests": true,
"checkInstallation": true,
Expand Down
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as qs from 'https://deno.land/std@0.108.0/node/querystring.ts'
import * as qs from 'https://deno.land/std@0.111.0/node/querystring.ts'

/**
* Request interface extension with additional `parsedBody` property (where parsed body gets stored)
Expand Down
4 changes: 2 additions & 2 deletions mod_test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { superdeno } from 'https://deno.land/x/superdeno@4.5.0/mod.ts'
import { superdeno } from 'https://deno.land/x/superdeno@4.6.0/mod.ts'
import { bodyParser, json, ReqWithBody, urlencoded } from './mod.ts'
import { describe, it, run } from 'https://deno.land/x/tincan@0.2.2/mod.ts'
import { describe, it, run } from 'https://deno.land/x/tincan@1.0.0/mod.ts'

describe('bodyParser(req)', () => {
it('should decode request body', async () => {
Expand Down

0 comments on commit 51cc1f0

Please sign in to comment.