faster-webpack-upload-plugin
Advanced tools
Comparing version 1.0.3 to 1.0.4
{ | ||
"name": "faster-webpack-upload-plugin", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"author": "WangTieZhu92", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -28,3 +28,3 @@ 'use strict' | ||
options.port = options.port || '22'; | ||
this.firstEmit = true; | ||
options.firstEmit = true; | ||
} | ||
@@ -52,3 +52,3 @@ | ||
if (this.firstEmit) { | ||
if (options.firstEmit) { | ||
try { | ||
@@ -67,3 +67,3 @@ await sftp.exists(remotePath); | ||
this.firstEmit = false; | ||
options.firstEmit = false; | ||
} else { | ||
@@ -70,0 +70,0 @@ const assets = compilation.assets; |
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
6555