gpt4 book ai didi

node.js - 如何编写npm脚本来复制目录

转载 作者:太空宇宙 更新时间:2023-11-04 03:02:36 31 4
gpt4 key购买 nike

我正在尝试编写 npm 脚本将整个目录复制到另一个目录。我尝试了单文件工作(cp),列表目录工作(dir),但是复制目录不起作用(cpdir)

npm 错误!代码 生命周期npm 错误!错误号1npm 错误! app@1.0.1 cpdir:copy --r dist distnew1npm 错误!退出状态1

  "scripts": {
"ng": "ng",
"start": "ng serve --port 4201",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"cp" : "copy test.txt test1.txt",
"dir" : "dir dist"
"cpdir" : "copy -r dist distnew"

},

最佳答案

在 *-nix 系统上,复制命令为 cp ,所以就用它吧。

"cpdir" : "cp -r ./dist  ./distnew"

关于node.js - 如何编写npm脚本来复制目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51071649/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com