其他分享
首页 > 其他分享> > Day 196/200 写脚本发布项目到远程服务器

Day 196/200 写脚本发布项目到远程服务器

作者:互联网

(一)需求

每次是打好包,手动发布。

发的多了,就想着能不能写脚本,实现半自动发布项目。

(二)思路

1、需要提前做好免密登录

免密登录可查看
https://segmentfault.com/a/1190000041426552

2、JS中写Shell脚本

(三)实现代码

var shell = require('shelljs')
shell.echo('start build')

if (shell.exec('npm run test').code !== 0) { // 执行npm run build 命令
  shell.echo('Error: Git commit failed')
  shell.exit(1)
}
shell.echo('build end')

shell.echo('upload start')
// 将项目上传到服务器对应的目录下
shell.exec('scp dist/index.html root@IP:/目录/ ')
shell.exec('scp -r dist/js root@IP:/目录/ ')
shell.exec('scp -r dist/static root@IP:/目录/')

shell.echo('deploy end')
shell.exit(1)

参考链接

ShellJS GitHub项目

https://github.com/shelljs/shelljs

标签:npm,200,shell,dist,exec,196,echo,shelljs,Day
来源: https://blog.csdn.net/xinghuowuzhao/article/details/123118015