simple-sftp-deploy
Advanced tools
Comparing version 0.2.0 to 0.2.1
{ | ||
"name": "simple-sftp-deploy", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "deploy project with ssh2-sftp-client", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -81,5 +81,5 @@ const Client = require('ssh2-sftp-client') | ||
.connect(config.options) | ||
.then(async data => { | ||
.then(data => { | ||
console.log('文件服务器连接成功') | ||
const deployFiles = () => { | ||
const deployFiles = async () => { | ||
console.log(`准备创建项目根路目录${config.project_remote_path}`) | ||
@@ -86,0 +86,0 @@ await this.sftp.mkdir(config.project_remote_path, false) // false: 不设置递归创建文件夹 |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
0