@builder.io/dev-tools 1.46.0-dev.202604171905.63c3bec96 → 1.46.0-dev.202604200317.da83adc0f
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/cli/index.cjs +231 -44
- package/cli/index.cjs.map +4 -4
- package/core/index.cjs +1 -1
- package/core/index.mjs +1 -1
- package/node/index.cjs +1 -1
- package/node/index.mjs +1 -1
- package/package.json +1 -1
- package/server/index.cjs +5 -2
- package/server/index.mjs +5 -2
- package/types/cli/codegen.d.ts +2 -0
- package/types/cli/github-cli.test.d.ts +1 -0
- package/types/cli/launch.d.ts +1 -1
- package/types/cli/utils/replay-action-uploader.d.ts +45 -0
- package/types/tsconfig.tsbuildinfo +1 -1
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/COPYING +3 -0
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/LICENSE-MIT +21 -0
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/README.md +516 -0
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/UNLICENSE +24 -0
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/complete/_rg +665 -0
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/complete/_rg.ps1 +213 -0
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/complete/rg.bash +783 -0
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/complete/rg.fish +175 -0
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/doc/CHANGELOG.md +1689 -0
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/doc/FAQ.md +1046 -0
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/doc/GUIDE.md +1022 -0
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/doc/rg.1 +2178 -0
- package/vendors/win32-x64/ripgrep-14.1.0-x86_64-pc-windows-msvc/rg.exe +0 -0
- package/types/cli/utils/resolve-shell-env.d.ts +0 -33
- /package/types/cli/{utils/resolve-shell-env.test.d.ts → code-tools.test.d.ts} +0 -0
|
Binary file
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Spawns a single interactive login shell to capture the user's full PATH.
|
|
3
|
-
*
|
|
4
|
-
* When the Electron app is launched from the macOS Dock, it inherits launchd's
|
|
5
|
-
* minimal PATH (/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin). Shell profile
|
|
6
|
-
* files (e.g. .zshrc, .bash_profile) are never sourced, so tools added to PATH
|
|
7
|
-
* by those files are invisible.
|
|
8
|
-
*
|
|
9
|
-
* This function spawns `$SHELL -i -l -c "printf <marker>; printenv PATH; printf <marker>"`
|
|
10
|
-
* to capture the fully-resolved PATH from the user's interactive shell. It uses
|
|
11
|
-
* `printenv` instead of `$PATH` to avoid issues with shells like fish where
|
|
12
|
-
* `$PATH` is a list variable. Unique markers reliably extract the PATH even
|
|
13
|
-
* when the shell prints banners, motd messages, or other noise.
|
|
14
|
-
*
|
|
15
|
-
* Returns `null` on Windows, in cloud environments, or on any failure.
|
|
16
|
-
*/
|
|
17
|
-
export declare function resolveShellEnv(): Promise<{
|
|
18
|
-
PATH: string;
|
|
19
|
-
} | null>;
|
|
20
|
-
/**
|
|
21
|
-
* Extracts a PATH string from shell output using start/end markers.
|
|
22
|
-
*
|
|
23
|
-
* Pure function. Returns the substring between the two markers,
|
|
24
|
-
* or `null` if the markers are not found or are in the wrong order.
|
|
25
|
-
*/
|
|
26
|
-
export declare function extractPathFromOutput(stdout: string, startMarker: string, endMarker: string): string | null;
|
|
27
|
-
/**
|
|
28
|
-
* Merges two PATH strings, deduplicating entries.
|
|
29
|
-
*
|
|
30
|
-
* Primary entries come first (higher priority). Entries from secondaryPath
|
|
31
|
-
* that are not already present in primaryPath are appended.
|
|
32
|
-
*/
|
|
33
|
-
export declare function mergePathEntries(primaryPath: string, secondaryPath: string, separator?: string): string;
|
|
File without changes
|