NodeJS 包裹->错误:未知选项“--out-dir”,错误:未知选项“--out-file”

vxf3dgd4  于 2023-04-20  发布在  Node.js
关注(0)|答案(1)|浏览(143)

我正在尝试使用包裹并运行以下两个命令“watch:js”:“parcel watch ./public/js/index.js --dist-dir ./public/js --out-file bundle.js”,“build:js”:“parcel build ./public/js/index.js --dist-dir ./public/js --out-file bundle.js”
当我第一次运行watch的dist字出来了,所以给了我错误未知选项”--out-dir”所以经过一段时间的搜索,我发现我必须改变"--out-dir”到“--dist-dir”,但它也给了我另一个错误,说**“未知选项--out-file”,然后改为dist,但也有另一个错误说"--dist-file”is unknown有人能帮我吗我想把这个操作的输出保存到一个叫bundle的js文件中**
“watch:js”:“parcel watch ./public/js/index.js --dist-dir ./public/js --out-file bundle.js”,“build:js”:“parcel build ./public/js/index.js --dist-dir ./public/js --out-file bundle.js”

我希望在public/js中有一个名为bundle.js的js文件,以便在pug中使用此js文件作为脚本

iam使用包裹v2,因为v1已弃用

8i9zcol2

8i9zcol21#

您需要将--out-file替换为--out-dir,将--dist-file替换为--out-file

'watch:js': "parcel watch <input_file_path> --out-dir <output_directory_path> --out-file <output_filename>",
'build:js': "parcel build <input_file_path> --out-dir <output_directory_path> --out-file <output_filename>"

相关问题