@rsdoctor/cli 1.2.3 → 1.2.4-beta.1
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/bin/rsdoctor +2 -1
- package/dist/commands/analyze.d.ts +0 -1
- package/dist/commands/bundle-diff.d.ts +5 -3
- package/dist/commands/index.d.ts +0 -1
- package/dist/commands/stats-analyze.d.ts +0 -1
- package/dist/constants.d.ts +0 -1
- package/dist/index.cjs +4123 -0
- package/dist/index.cjs.LICENSE.txt +13 -0
- package/dist/index.d.ts +0 -1
- package/dist/index.js +4037 -80
- package/dist/index.js.LICENSE.txt +13 -0
- package/dist/types.d.ts +2 -3
- package/dist/utils.d.ts +0 -1
- package/package.json +20 -14
- package/dist/commands/analyze.d.ts.map +0 -1
- package/dist/commands/analyze.js +0 -117
- package/dist/commands/bundle-diff.d.ts.map +0 -1
- package/dist/commands/bundle-diff.js +0 -152
- package/dist/commands/index.d.ts.map +0 -1
- package/dist/commands/index.js +0 -69
- package/dist/commands/stats-analyze.d.ts.map +0 -1
- package/dist/commands/stats-analyze.js +0 -98
- package/dist/constants.d.ts.map +0 -1
- package/dist/constants.js +0 -65
- package/dist/index.d.ts.map +0 -1
- package/dist/types.d.ts.map +0 -1
- package/dist/types.js +0 -18
- package/dist/utils.d.ts.map +0 -1
- package/dist/utils.js +0 -104
package/bin/rsdoctor
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { Command } from '../types';
|
|
2
2
|
import { Commands } from '../constants';
|
|
3
|
-
import {
|
|
3
|
+
import { RsdoctorSDK } from '@rsdoctor/sdk';
|
|
4
4
|
interface Options {
|
|
5
5
|
current: string;
|
|
6
6
|
baseline: string;
|
|
7
7
|
open?: boolean;
|
|
8
8
|
}
|
|
9
|
-
export declare const bundleDiff: Command<Commands.BundleDiff, Options,
|
|
9
|
+
export declare const bundleDiff: Command<Commands.BundleDiff, Options, RsdoctorSDK<{
|
|
10
|
+
name: string;
|
|
11
|
+
root: string;
|
|
12
|
+
}>>;
|
|
10
13
|
export {};
|
|
11
|
-
//# sourceMappingURL=bundle-diff.d.ts.map
|
package/dist/commands/index.d.ts
CHANGED
package/dist/constants.d.ts
CHANGED