drizzle-auto 1.1.14 → 1.1.16
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/index.js +3 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -150,7 +150,7 @@ async function triggerEngine(event) {
|
|
|
150
150
|
|
|
151
151
|
const audit = justifyStructure();
|
|
152
152
|
if (!audit.ok) {
|
|
153
|
-
console.log(`${T.red}${T.bold}
|
|
153
|
+
console.log(`${T.red}${T.bold}👾 CRITICAL FAILURE:${T.reset} ${audit.msg}`);
|
|
154
154
|
hasError = true; isRunning = false; return;
|
|
155
155
|
}
|
|
156
156
|
|
|
@@ -163,13 +163,13 @@ async function triggerEngine(event) {
|
|
|
163
163
|
for (const step of steps) {
|
|
164
164
|
const success = await runStep(step.args, step.name);
|
|
165
165
|
if (!success) {
|
|
166
|
-
console.log(`\n${T.red}${T.bold}
|
|
166
|
+
console.log(`\n${T.red}${T.bold}👾 SERVER CRASHED AT [${step.name.toUpperCase()}]${T.reset}`);
|
|
167
167
|
hasError = true; isRunning = false; return;
|
|
168
168
|
}
|
|
169
169
|
}
|
|
170
170
|
|
|
171
171
|
hasError = false;
|
|
172
|
-
console.log(`\n${T.lime}${T.bold}
|
|
172
|
+
console.log(`\n${T.lime}${T.bold}🎉 Database push success${T.reset}`);
|
|
173
173
|
console.log(`${T.gray}Waiting for next server-side change...${T.reset}\n`);
|
|
174
174
|
isRunning = false;
|
|
175
175
|
}
|