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 2fd67e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@
"@types/on-finished": "^2.3.4",
"@types/pem": "^1.14.4",
"@types/proxy-addr": "^2.0.3",
"@types/qs": "^6.9.15",
"@types/supertest": "^6.0.2",
"@types/type-is": "^1.6.6",
"@types/vary": "^1.1.3",
Expand Down Expand Up @@ -112,9 +111,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 2fd67e3

Please sign in to comment.