我正在使用 gulp 将 Electron 构建的应用程序复制到目录中,并且该任务似乎挂在中间复制中。检查 dest 目录,副本只是部分完成;有些文件已复制,有些则没有。如果我删除 LUafiles 中的 .app 行,所有 Lua 文件都会复制并且任务完成。
我最好的猜测是 .app 目录结构中的符号链接可能会给它带来麻烦,但我不能确定。符号链接指向 .ap 目录中的文件。想法赞赏。
const gulp = require('gulp');
const debug = require('gulp-debug')
const Lualib = '/Users/kimaldis/Documents/Dev/lightroom dev/lib'
var Luafiles = [
"Tak.lrdevplugin/**/*.lua",
Lualib + "/JSON.lua",
Lualib + "/Path.lua",
Lualib + "/Utils.lua",
Lualib + "/Log.lua",
Lualib + "/class.lua",
"TakServer/dist/mac/takserver-darwin-x64/*takserver.app/**/*" // run npm run package-mac in root first to build server app
]
gulp.task('watch', function() {
console.log( `watching ${Luafiles}` )
// copy lr plugin to local plugin dir
// copy takserver app into '<install dir>/Tak.lrdevplugin'
gulp.watch( Luafiles, function ( cb ) {
gulp.src( Luafiles, { } )
.pipe(gulp.dest( `/Users/kimaldis/Lightroom/Lightroom Plugins/Tak.lrdevplugin` ))
.pipe(debug({title: 'Copying LR Plugin to local plugin dir :'}))
.on('error', () => {
console.error('Error');
})
.on('finish', () => {
console.log('Success');
});
return cb()
})
} )