skill-tree 0.1.6 → 0.1.7
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/dist/cli/index.js +1 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/index.mjs +1 -1
- package/dist/cli/index.mjs.map +1 -1
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/cli/index.mjs
CHANGED
|
@@ -8857,7 +8857,7 @@ var IndexerService = class {
|
|
|
8857
8857
|
if (this.db) {
|
|
8858
8858
|
const skills = await (this.db.getAllSkills?.() || this.db.listSkills?.()) || [];
|
|
8859
8859
|
for (const skill of skills) {
|
|
8860
|
-
if (skill.status !== "indexed" && !options?.force) continue;
|
|
8860
|
+
if (skill.status !== "indexed" && !options?.force && !options?.importAll) continue;
|
|
8861
8861
|
try {
|
|
8862
8862
|
const converted = convertIndexerSkill(skill);
|
|
8863
8863
|
await this.skillBank.saveSkill(converted.skill);
|