2

我正在使用 pkg 将我的节点应用程序打包到 .exe 中,它工作正常。我遇到的问题是模块通知程序不包含在构建中。当我运行以下命令来构建 exe 时:

$ pkg . --targets node10-win-x64

我明白了:

> pkg@4.4.6
> Warning Cannot include file %1 into executable.
  The file must be distributed with executable as %2.
  %1: node_modules\node-notifier\vendor\notifu\notifu.exe
  %2: path-to-executable/notifier/notifu.exe
> Warning Cannot include file %1 into executable.
  The file must be distributed with executable as %2.
  %1: node_modules\node-notifier\vendor\notifu\notifu64.exe
  %2: path-to-executable/notifier/notifu64.exe
> Warning Cannot include file %1 into executable.
  The file must be distributed with executable as %2.
  %1: node_modules\node-notifier\vendor\terminal-notifier.app\Contents\MacOS\terminal-notifier
  %2: path-to-executable/notifier/terminal-notifier
> Warning Cannot include file %1 into executable.
  The file must be distributed with executable as %2.
  %1: node_modules\node-notifier\vendor\snoreToast\SnoreToast.exe
  %2: path-to-executable/notifier/SnoreToast.exe
> Warning Cannot include file %1 into executable.
  The file must be distributed with executable as %2.
  %1: node_modules\node-notifier\vendor\notifu\notifu.exe
  %2: path-to-executable/notifier/notifu.exe
> Warning Cannot include file %1 into executable.
  The file must be distributed with executable as %2.
  %1: node_modules\node-notifier\vendor\notifu\notifu64.exe
  %2: path-to-executable/notifier/notifu64.exe
> Warning Cannot include file %1 into executable.
  The file must be distributed with executable as %2.
  %1: node_modules\node-notifier\vendor\terminal-notifier.app\Contents\MacOS\terminal-notifier
  %2: path-to-executable/notifier/terminal-notifier
> Warning Cannot include file %1 into executable.
  The file must be distributed with executable as %2.
  %1: node_modules\node-notifier\vendor\snoreToast\SnoreToast.exe
  %2: path-to-executable/notifier/SnoreToast.exe

这似乎是一个常见问题,已在此处曝光,但我无法使用该用户的信息来解决此问题。我应该将 notifu.exe 移动到我的节点 main.js 所在的目录吗?

4

1 回答 1

2

我解决了。在 Windows 10(64 位)上 在我的项目中,我使用了“node-notifier”,我收到了类似于上面的警告。上述警报是一个警告,即可执行文件在创建后必须位于子文件夹中。

但是,在 Windows 10(64 位)中,“node-notifier”使用“soreToast-x64.exe”而不是“soreToast.exe”。

您可以按以下顺序进行。

  1. 将 pkg 重新安装到最新版本。

npm i -g pkg

  1. 从“\node_modules\node-notifier~”子文件夹中查找并复制“snoretoast-x64.exe”。

  2. 在生成的可执行子路径中创建一个文件夹“notifier”并复制并粘贴“snoretoast-x64.exe”。

于 2021-05-08T12:44:30.900 回答