@yemi33/minions 0.1.26 → 0.1.27
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/CHANGELOG.md +5 -0
- package/engine.js +2 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/engine.js
CHANGED
|
@@ -52,11 +52,10 @@ function validateConfig(config) {
|
|
|
52
52
|
console.error('FATAL: No agents defined in config.json');
|
|
53
53
|
errors++;
|
|
54
54
|
}
|
|
55
|
-
// Projects
|
|
55
|
+
// Projects (optional — engine works with central work items even without projects)
|
|
56
56
|
const projects = getProjects(config);
|
|
57
57
|
if (projects.length === 0) {
|
|
58
|
-
console.
|
|
59
|
-
errors++;
|
|
58
|
+
console.log(' No projects linked — add one with: minions add <dir>');
|
|
60
59
|
}
|
|
61
60
|
for (const p of projects) {
|
|
62
61
|
if (!p.localPath || !fs.existsSync(path.resolve(p.localPath))) {
|
package/package.json
CHANGED