Skip to content
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -363,4 +363,6 @@ coverage/
.vscode/

# Environment
.env.local
.env.local

.sfdx
12 changes: 0 additions & 12 deletions LICENSE.txt

This file was deleted.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
"import": "./dist/esm/index.mjs"
}
},
"resolutions": {
Copy link

Copilot AI Apr 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

resolutions is a Yarn-specific field and will not be applied by the repo’s current npm ci workflow (package-lock is the lock source). If the goal is to force basic-ftp@5.2.1, switch this to npm’s overrides and regenerate/commit the updated package-lock.json so CI actually installs 5.2.1.

Suggested change
"resolutions": {
"overrides": {

Copilot uses AI. Check for mistakes.
"basic-ftp": "5.2.1"
},
"scripts": {
"clean": "rm -rf ./dist/*",
"prebuild": "npm run clean",
Expand Down
Loading
Loading