Skip to content

Commit

Permalink
refactor: replace qs with neoqs
Browse files Browse the repository at this point in the history
  • Loading branch information
RomainLanz committed Jul 25, 2024
1 parent 06a28ee commit cf56ed8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@
"etag": "^1.8.1",
"fresh": "^0.5.2",
"mime-types": "^2.1.35",
"neoqs": "^6.12.3",
"on-finished": "^2.4.1",
"proxy-addr": "^2.0.7",
"qs": "^6.12.1",
"tmp-cache": "^1.1.0",
"type-is": "^1.6.18",
"vary": "^1.1.2",
Expand Down
2 changes: 1 addition & 1 deletion src/qs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* file that was distributed with this source code.
*/

import { parse, stringify } from 'qs'
import { parse, stringify } from 'neoqs'
import { QSParserConfig } from './types/qs.js'

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/router/router.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* file that was distributed with this source code.
*/

import { parse } from 'qs'
import { parse } from 'neoqs'
import { test } from '@japa/runner'
import { EncryptionFactory } from '@adonisjs/encryption/factories'

Expand Down

0 comments on commit cf56ed8

Please sign in to comment.