@code-pushup/cli 0.48.0 → 0.49.0
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/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@code-pushup/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.49.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"bin": {
|
|
6
6
|
"code-pushup": "index.js"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@code-pushup/models": "0.
|
|
10
|
-
"@code-pushup/core": "0.
|
|
11
|
-
"@code-pushup/utils": "0.
|
|
9
|
+
"@code-pushup/models": "0.49.0",
|
|
10
|
+
"@code-pushup/core": "0.49.0",
|
|
11
|
+
"@code-pushup/utils": "0.49.0",
|
|
12
12
|
"yargs": "^17.7.2",
|
|
13
|
-
"
|
|
13
|
+
"ansis": "^3.3.0",
|
|
14
14
|
"simple-git": "^3.20.0"
|
|
15
15
|
},
|
|
16
16
|
"homepage": "https://github.com/code-pushup/cli#readme",
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import { CoreConfig } from '@code-pushup/models';
|
|
1
|
+
import { CoreConfig, Format } from '@code-pushup/models';
|
|
2
2
|
import { CoreConfigCliOptions } from './core-config.model';
|
|
3
3
|
import { GeneralCliOptions } from './global.model';
|
|
4
4
|
import { OnlyPluginsOptions } from './only-plugins.model';
|
|
5
5
|
import { SkipPluginsOptions } from './skip-plugins.model';
|
|
6
|
-
export
|
|
6
|
+
export type CoreConfigMiddlewareOptions = GeneralCliOptions & CoreConfigCliOptions & OnlyPluginsOptions & SkipPluginsOptions;
|
|
7
|
+
export declare function coreConfigMiddleware<T extends CoreConfigMiddlewareOptions>(processArgs: T): Promise<GeneralCliOptions & CoreConfig & OnlyPluginsOptions & SkipPluginsOptions>;
|
|
8
|
+
export declare const normalizeFormats: (formats?: string[]) => Format[];
|