@builder.io/dev-tools 0.2.30 → 0.2.31
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/core/index.cjs +24 -24
- package/core/index.mjs +24 -24
- package/node/index.cjs +1 -1
- package/node/index.mjs +1 -1
- package/package.json +1 -1
- package/server/index.cjs +7 -7
- package/server/index.mjs +8 -8
- package/types/common/utils.d.ts +1 -0
- package/types/types.d.ts +1 -0
package/types/common/utils.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export declare function normalizePathSlash(path: string): string;
|
|
|
4
4
|
export declare function getComponentImportNameFilePath(sys: DevToolsSys, filePath: string): string;
|
|
5
5
|
export declare function getComponentImportName(str: string): string;
|
|
6
6
|
export declare function getComponentDisplayNameFromFilePath(sys: DevToolsSys, filePath: string): string;
|
|
7
|
+
export declare function getComponentImportPath(sys: DevToolsSys, absFilePath: string): string;
|
|
7
8
|
export declare function getDisplayFilePath(sys: DevToolsSys, filePath: string): string;
|
|
8
9
|
export declare function getComponentDisplayName(str: string): string;
|
|
9
10
|
export declare function sortComponents(cmps: ComponentInfo[]): ComponentInfo[];
|