尝试在 VS Code 中运行 publish.sh 文件时
#!/usr/bin/env sh
# abort on errors
set -e
# build
npm run docs:build
# navigate into the build output directory
cd docs/.vuepress/dist
# if you are deploying to a custom domain
# echo 'www.example.com' > CNAME
git init
git add -A
git commit -m 'deploy'
# if you are deploying to https://<USERNAME>.github.io
# git push -f [email protected]:boldak/<USERNAME>.github.io.git master
# if you are deploying to https://<USERNAME>.github.io/<REPO>
git push -f https://github.com/shunichkaaaa/edu_db_labs_IO-12_Group-4 master:gh-pages
cd -
我遇到了这个问题,npm run 完全可以做任何事情。它不会返回错误,也不会在 GitHub 上创建第二个分支。
根据其中一个网站的建议,我尝试将 npm ignore-scripts 值设置为 false。
npm config set ignore-scripts false
但它已经被设置为 false.
我可以在本地托管我的服务,同时使用 npm run docs:dev
.
从 VS Code 终端切换到 Windows 命令提示符只是重复了之前的问题。
所以对这个有什么意见吗??