thepopebot 1.2.75-beta.8 → 1.2.75-beta.9
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/bin/cli.js +1 -1
- package/package.json +1 -1
- package/templates/.gitignore.template +3 -0
package/bin/cli.js
CHANGED
|
@@ -273,7 +273,7 @@ async function init() {
|
|
|
273
273
|
}
|
|
274
274
|
|
|
275
275
|
// Create default skill activation symlinks
|
|
276
|
-
const defaultSkills = [
|
|
276
|
+
const defaultSkills = [];
|
|
277
277
|
const activeDir = path.join(cwd, 'skills', 'active');
|
|
278
278
|
fs.mkdirSync(activeDir, { recursive: true });
|
|
279
279
|
for (const skill of defaultSkills) {
|
package/package.json
CHANGED