[Cleanup] Remove deploy script (#2806)

This commit is contained in:
Chenlei Hu
2025-03-02 15:36:54 -05:00
committed by GitHub
parent 9431c955a6
commit e6a583e11b
4 changed files with 0 additions and 28 deletions

View File

@@ -1,16 +0,0 @@
import { config } from 'dotenv'
import { copy } from 'fs-extra'
config()
const sourceDir = './dist'
// eslint-disable-next-line no-undef
const targetDir = process.env.DEPLOY_COMFYUI_DIR
copy(sourceDir, targetDir)
.then(() => {
console.log(`Directory copied successfully! ${sourceDir} -> ${targetDir}`)
})
.catch((err) => {
console.error('Error copying directory:', err)
})