@builder.io/dev-tools 1.6.27-dev.202504162030.4aeeec06 → 1.6.28

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.
@@ -1,6 +0,0 @@
1
- import type { DevToolsSys } from "../..";
2
- import type { EnsureConfigResult } from "../../../types";
3
- /**
4
- * Ensure the Remix Vite config has the necessary plugins and settings
5
- */
6
- export declare function ensureRemixConfig(sys: DevToolsSys, configFilePath: string, configContent: string): Promise<EnsureConfigResult>;
@@ -1,10 +0,0 @@
1
- import type { DevToolsSys } from "../..";
2
- import type ts from "typescript";
3
- /**
4
- * Check if the current project is using Remix framework
5
- */
6
- export declare function isRemixFramework(sys: DevToolsSys): boolean;
7
- /**
8
- * Update an object literal to include the external dependencies for Remix
9
- */
10
- export declare function updateCommonJsLibrary(sys: DevToolsSys, config: ts.ObjectLiteralExpression): ts.ObjectLiteralExpression | null;
@@ -1,6 +0,0 @@
1
- import type { DevToolsSys } from "../..";
2
- import type { EnsureConfigResult } from "../../../types";
3
- /**
4
- * Update a Vite config file to include a plugin
5
- */
6
- export declare function updateViteConfig(sys: DevToolsSys, configFilePath: string, configContent: string, pluginName: string, importPath: string): Promise<EnsureConfigResult>;