Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Integrate bundle core #5530

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
17 changes: 17 additions & 0 deletions gather.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/bash

# Directory where the search will begin
SOURCE_DIR="./packages" # Replace with your source directory path

# Directory where the .vsix files will be copied
TARGET_DIR="./extensions" # Replace with your target directory path

# Create the target directory if it doesn't exist
# mkdir -p "$TARGET_DIR"

# Find and copy .vsix files
find "$SOURCE_DIR" -type d -name 'salesforcedx-vscode*' -print0 | while IFS= read -r -d '' dir; do
find "$dir" -name '*60.7.0.vsix' -exec cp {} "$TARGET_DIR" \;
done

echo "All .vsix files have been copied to $TARGET_DIR."
275 changes: 145 additions & 130 deletions package-lock.json

Large diffs are not rendered by default.

212 changes: 0 additions & 212 deletions packages/salesforcedx-apex-debugger/test/integration/adapter.test.ts

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading