关于shell:Day-32100-前端写脚本发布项目到远程服务器

32次阅读

共计 598 个字符,预计需要花费 2 分钟才能阅读完成。

(一)需要

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

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

(二)思路

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

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

2、JS 中写 Shell 脚本

  • 装置 ShellJS
    npm install [-g] shelljs
  • 我的项目打包
  • 上传打包好的文件

(三)实现代码

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/sh…

正文完
 0