Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用电子打包器来创建我的应用程序的 electron.exe。我需要排除所有节点模块。我尝试了以下
--ignore=node_modules
以上不起作用。知道如何在最终构建中排除所有文件夹/删除节点模块。
如果您将模块安装为devDependencies,它们将在打包前自动修剪。
devDependencies
如果您正在使用electron-builder,您可以在配置中定义 glob 模式files。在这种情况下!**/node_modules/*将排除所有node_modules.
electron-builder
files
!**/node_modules/*
node_modules
如果您正在使用electron-packager,您可以使用ignore选项和正则表达式来排除文件。
electron-packager
ignore