@builder.io/dev-tools 1.0.14 → 1.0.15
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/angular/index.cjs +1 -0
- package/angular/index.d.ts +1 -0
- package/angular/index.mjs +1 -0
- package/core/index.cjs +27 -23
- package/core/index.mjs +27 -23
- package/node/index.cjs +1 -1
- package/node/index.mjs +1 -1
- package/package.json +8 -2
- package/server/index.cjs +4 -4
- package/server/index.mjs +4 -4
- package/types/angular/index.d.ts +1 -0
- package/types/common/test-utils.d.ts +1 -0
- package/types/core/adapters/angular/angular-ensure-config-plugin.d.ts +7 -1
- package/types/core/adapters/angular/angular-ensure-config-plugin.unit.d.ts +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function builderDevTools(): Promise<void>;
|
|
@@ -4,3 +4,4 @@ export declare function codeEqual(sys: DevToolsSys, n: ts.Node | null | undefine
|
|
|
4
4
|
export declare function createTestFsSys(rootDir: string): Promise<DevToolsSys>;
|
|
5
5
|
export declare function createTestMemSys(rootDir?: string): Promise<DevToolsSys>;
|
|
6
6
|
export declare function createRemixTestMemSys(rootDir?: string): Promise<DevToolsSys>;
|
|
7
|
+
export declare function createAngularTestMemSys(rootDir?: string): Promise<DevToolsSys>;
|
|
@@ -1,3 +1,9 @@
|
|
|
1
1
|
import type { EnsureConfigResult } from "../../../types";
|
|
2
2
|
import type { DevToolsSys } from "../..";
|
|
3
|
-
export declare function angularEnsureConfigPlugin(
|
|
3
|
+
export declare function angularEnsureConfigPlugin(sys: DevToolsSys, configFilePath: string, configContent: string): Promise<EnsureConfigResult>;
|
|
4
|
+
export declare function angularEnsureMainFileUpdate(sys: DevToolsSys): Promise<void>;
|
|
5
|
+
export declare function angularEnsureMainFileCode(sys: DevToolsSys, code: string): Promise<string>;
|
|
6
|
+
export declare function updatePackage(sys: DevToolsSys): Promise<void>;
|
|
7
|
+
export declare function packageConcurrentlyScriptUpdate(code: string): string | undefined;
|
|
8
|
+
export declare const DEV_TOOLS_SCRIPT_NAME = "builder-dev";
|
|
9
|
+
export declare const DEV_TOOLS_COMMAND = "npx builder-dev-tools";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|