-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update fe to 1.4.0 and remove DesktopExtensions requirement. (#273)
- Loading branch information
1 parent
1c99bc8
commit 1f4f393
Showing
1 changed file
with
3 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
"main": ".vite/build/main.js", | ||
"packageManager": "[email protected]", | ||
"config": { | ||
"frontendVersion": "1.3.43", | ||
"frontendVersion": "1.4.0", | ||
"comfyVersion": "0.2.7", | ||
"managerCommit": "e629215c100c89a9a9d33fc03be3248069ff67ef", | ||
"uvVersion": "0.5.1" | ||
|
@@ -19,12 +19,11 @@ | |
"clean:uv": "rimraf assets/uv", | ||
"clean:assets": "rimraf assets/.env assets/ComfyUI assets/python.tgz & yarn run clean:assets:dev", | ||
"clean:assets:dev": "yarn run clean:assets:git && rimraf assets/python assets/override.txt & rimraf assets/cpython*.tar.gz & rimraf assets/requirements.*", | ||
"clean:assets:git": "rimraf assets/ComfyUI/.git assets/ComfyUI/custom_nodes/ComfyUI_Manager/.git assets/ComfyUI/custom_nodes/DesktopSettingsExtension/.git", | ||
"clean:assets:git": "rimraf assets/ComfyUI/.git assets/ComfyUI/custom_nodes/ComfyUI_Manager/.git", | ||
"clean:slate": "yarn run clean & yarn run clean:assets & rimraf node_modules", | ||
"clone-settings-extension": "git clone https://github.com/Comfy-Org/DesktopSettingsExtension.git assets/ComfyUI/custom_nodes/DesktopSettingsExtension", | ||
"download:uv": "node scripts/downloadUV.js", | ||
"download-frontend": "node scripts/downloadFrontend.js", | ||
"make:frontend": "yarn run download-frontend && yarn run clone-settings-extension", | ||
"make:frontend": "yarn run download-frontend", | ||
"format": "prettier --check .", | ||
"format:fix": "prettier --write .", | ||
"lint": "eslint --ext .ts,.tsx .", | ||
|