@uniformdev/cli 19.86.1-alpha.10 → 19.86.1-alpha.11
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/index.mjs +2 -2
- package/package.json +8 -8
package/dist/index.mjs
CHANGED
|
@@ -857,8 +857,8 @@ var extractAndUploadUniformFilesForObject = async (object, options) => {
|
|
|
857
857
|
return file.url;
|
|
858
858
|
};
|
|
859
859
|
const abortTimeout = setTimeout(() => {
|
|
860
|
-
throw new Error(`Failed to upload file ${url}`);
|
|
861
|
-
},
|
|
860
|
+
throw new Error(`Failed to upload file ${url} (upload timed out)`);
|
|
861
|
+
}, 3e4);
|
|
862
862
|
const uploadedFileUrl = await checkForFile();
|
|
863
863
|
clearTimeout(abortTimeout);
|
|
864
864
|
objectAsString = objectAsString.replaceAll(`"${url}"`, `"${uploadedFileUrl}"`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/cli",
|
|
3
|
-
"version": "19.86.1-alpha.
|
|
3
|
+
"version": "19.86.1-alpha.11+cb2b44bdd",
|
|
4
4
|
"description": "Uniform command line interface tool",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./cli.js",
|
|
@@ -17,12 +17,12 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@thi.ng/mime": "^2.2.23",
|
|
20
|
-
"@uniformdev/assets": "19.86.1-alpha.
|
|
21
|
-
"@uniformdev/canvas": "19.86.1-alpha.
|
|
22
|
-
"@uniformdev/context": "19.86.1-alpha.
|
|
23
|
-
"@uniformdev/files": "19.86.1-alpha.
|
|
24
|
-
"@uniformdev/project-map": "19.86.1-alpha.
|
|
25
|
-
"@uniformdev/redirect": "19.86.1-alpha.
|
|
20
|
+
"@uniformdev/assets": "19.86.1-alpha.11+cb2b44bdd",
|
|
21
|
+
"@uniformdev/canvas": "19.86.1-alpha.11+cb2b44bdd",
|
|
22
|
+
"@uniformdev/context": "19.86.1-alpha.11+cb2b44bdd",
|
|
23
|
+
"@uniformdev/files": "19.86.1-alpha.11+cb2b44bdd",
|
|
24
|
+
"@uniformdev/project-map": "19.86.1-alpha.11+cb2b44bdd",
|
|
25
|
+
"@uniformdev/redirect": "19.86.1-alpha.11+cb2b44bdd",
|
|
26
26
|
"call-bind": "^1.0.2",
|
|
27
27
|
"colorette": "2.0.20",
|
|
28
28
|
"cosmiconfig": "8.3.6",
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"publishConfig": {
|
|
70
70
|
"access": "public"
|
|
71
71
|
},
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "cb2b44bdd700124c26e17f1840dbb6049030af81"
|
|
73
73
|
}
|