关于 nodejs 使用 node-notifier 加 pkg 打包问题。

异常描述:
pkg . -t node16-win --out-path dist 执行错误如下:

> pkg . -t node16-win --out-path dist
> pkg@5.7.0
> 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-x64.exe
  %2: path-to-executable/notifier/snoretoast-x64.exe
> Warning Cannot include file %1 into executable.
  The file must be distributed with executable as %2.
  %1: node_modules\node-notifier\vendor\snoreToast\snoretoast-x86.exe
  %2: path-to-executable/notifier/snoretoast-x86.exe
> Warning Cannot include file %1 into executable.
  The file must be distributed with executable as %2.
> Warning Cannot include file %1 into executable.
  The file must be distributed with executable as %2.
  %1: node_modules\node-notifier\vendor\snoreToast\snoretoast-x64.exe
  %2: path-to-executable/notifier/snoretoast-x64.exe
> Warning Cannot include file %1 into executable.
  The file must be distributed with executable as %2.
  %1: node_modules\node-notifier\vendor\snoreToast\snoretoast-x86.exe
  %2: path-to-executable/notifier/snoretoast-x86.exe

解决思路:
查看 \node_modules\node-notifier\notifiers\toaster.js 文件打印 notifier 路径。
在这里插入图片描述
pkg打包前运行路径:\node_modules\node-notifier\vendor\snoreToast\snoretoast
pkg打包后运行路径:dist\notifier

解决方案:copy snoretoast dist 所在目录。
打包后文件位置:
在这里插入图片描述

node_modules 下文件位置。
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/WSYLH/article/details/131433541