@intuned/runtime-dev 1.0.6-cli.8.1.6 ā 1.0.6-cli.8.1.8
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.
|
@@ -138,6 +138,7 @@ async function convertProjectToCodeTree(projectPath) {
|
|
|
138
138
|
} catch (error) {
|
|
139
139
|
console.log(_chalk.default.yellow(`Warning: Could not read directory ${dirPath}`));
|
|
140
140
|
}
|
|
141
|
+
console.log(tree, "TEST");
|
|
141
142
|
return tree;
|
|
142
143
|
}
|
|
143
144
|
console.log(_chalk.default.cyan("\nš¦ Building project..."));
|
|
@@ -168,6 +169,7 @@ async function deployProject(projectName, auth) {
|
|
|
168
169
|
method: "POST",
|
|
169
170
|
body: JSON.stringify(deployProjectPayload)
|
|
170
171
|
});
|
|
172
|
+
console.log(response);
|
|
171
173
|
if (!response.ok) {
|
|
172
174
|
if (response.status === 401) {
|
|
173
175
|
throw new Error(`Invalid API key. Please check your API key and try again.`);
|