ai-yuca 1.2.2 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/package.json
CHANGED
|
@@ -191,7 +191,6 @@ async function uploadFilesWithConfig(options = {}) {
|
|
|
191
191
|
}
|
|
192
192
|
// 执行批量上传
|
|
193
193
|
const uploadSource = enableCache && filesToUpload.length > 0 ? filesToUpload : sourcePath;
|
|
194
|
-
console.log('uploadSource', uploadSource);
|
|
195
194
|
const result = await (0, upload_1.uploadFiles)({
|
|
196
195
|
bucketName,
|
|
197
196
|
sourcePath: uploadSource,
|
package/package.json
CHANGED
package/src/uploadWithConfig.ts
CHANGED
|
@@ -202,7 +202,7 @@ export async function uploadFilesWithConfig(options: UploadWithConfigOptions = {
|
|
|
202
202
|
|
|
203
203
|
// 执行批量上传
|
|
204
204
|
const uploadSource = enableCache && filesToUpload.length > 0 ? filesToUpload : sourcePath;
|
|
205
|
-
|
|
205
|
+
|
|
206
206
|
const result = await uploadFiles({
|
|
207
207
|
bucketName,
|
|
208
208
|
sourcePath: uploadSource,
|