ccsini 0.1.64 → 0.1.65
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.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -28058,7 +28058,7 @@ var {
|
|
|
28058
28058
|
} = import__.default;
|
|
28059
28059
|
|
|
28060
28060
|
// src/version.ts
|
|
28061
|
-
var VERSION = "0.1.
|
|
28061
|
+
var VERSION = "0.1.65";
|
|
28062
28062
|
|
|
28063
28063
|
// src/commands/init.ts
|
|
28064
28064
|
init_source();
|
|
@@ -29016,7 +29016,7 @@ class CcsiniClient {
|
|
|
29016
29016
|
headers: this.getHeaders()
|
|
29017
29017
|
});
|
|
29018
29018
|
if (!res.ok)
|
|
29019
|
-
throw new Error(
|
|
29019
|
+
throw new Error(`Failed to fetch manifest (HTTP ${res.status})`);
|
|
29020
29020
|
const data = await res.json();
|
|
29021
29021
|
if (!data.manifest)
|
|
29022
29022
|
return null;
|