ppcos 1.0.8 → 1.0.10
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/lib/commands/init.js
CHANGED
|
@@ -149,7 +149,7 @@ async function createConfigTemplate() {
|
|
|
149
149
|
console.log('Next steps:');
|
|
150
150
|
console.log(' 1. Edit main-config.json with your client names');
|
|
151
151
|
console.log(' 2. Run: ppcos init-all');
|
|
152
|
-
console.log(' 3. Run: /
|
|
152
|
+
console.log(' 3. Run: /branding-generator to set up your agency branding');
|
|
153
153
|
}
|
|
154
154
|
|
|
155
155
|
/**
|
package/lib/commands/status.js
CHANGED
|
@@ -162,7 +162,7 @@ export default async function status(options = {}) {
|
|
|
162
162
|
console.log(` Branding: ${chalk.yellow('invalid brand.json')}`);
|
|
163
163
|
}
|
|
164
164
|
} else {
|
|
165
|
-
console.log(` Branding: ${chalk.yellow('not configured')} — run /
|
|
165
|
+
console.log(` Branding: ${chalk.yellow('not configured')} — run /branding-generator`);
|
|
166
166
|
}
|
|
167
167
|
console.log('');
|
|
168
168
|
} catch (err) {
|
package/lib/utils/fs-helpers.js
CHANGED
|
@@ -10,7 +10,7 @@ import { constants } from 'node:fs';
|
|
|
10
10
|
// Directories to skip during template file enumeration.
|
|
11
11
|
// tmp/ dirs hold generated runtime data (analysis output, caches)
|
|
12
12
|
// that must never be distributed to clients.
|
|
13
|
-
const EXCLUDED_DIR_NAMES = new Set(['tmp']);
|
|
13
|
+
const EXCLUDED_DIR_NAMES = new Set(['tmp', 'node_modules']);
|
|
14
14
|
|
|
15
15
|
/**
|
|
16
16
|
* Check if a file exists (async)
|