我只想将我的 Electron 应用程序打包到 asar 存档中,但没有devDependencies
在package.json
. 实际上,我唯一不需要打包到 asar 存档的是"node_modules/electron"
,所以根据文档(https://github.com/electron/asar# exclude-multiple-resources-from-being-packed )我'我试过:
asar pack . app.asar --unpack-dir "{node_modules/electron}"
但没有成功......它仍然打包"node_modules/electron"
到存档中。如何正确执行?