@tsed/cli-core 3.20.15 → 3.20.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/lib/index.modern.js +2 -2
- package/lib/index.modern.js.map +1 -1
- package/package.json +1 -1
package/lib/index.modern.js
CHANGED
|
@@ -17,7 +17,7 @@ import execa from 'execa';
|
|
|
17
17
|
import Fs, { existsSync } from 'fs-extra';
|
|
18
18
|
import readPkgUp from 'read-pkg-up';
|
|
19
19
|
import axios from 'axios';
|
|
20
|
-
import querystring from 'querystring';
|
|
20
|
+
import querystring, { stringify } from 'querystring';
|
|
21
21
|
import tunnel from 'tunnel';
|
|
22
22
|
import { camelCase, snakeCase } from 'change-case';
|
|
23
23
|
import parse from 'url-parse';
|
|
@@ -1490,7 +1490,7 @@ let CliHttpClient = CliHttpClient_1 = class CliHttpClient extends CliHttpLogClie
|
|
|
1490
1490
|
}
|
|
1491
1491
|
|
|
1492
1492
|
static getParamsSerializer(params) {
|
|
1493
|
-
return
|
|
1493
|
+
return stringify(cleanObject(params));
|
|
1494
1494
|
}
|
|
1495
1495
|
|
|
1496
1496
|
async $onInit() {
|