skills 1.0.16 → 1.0.17
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.js +1 -4
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -198,11 +198,8 @@ function readSkillLock() {
|
|
|
198
198
|
if (typeof parsed.version !== "number" || !parsed.skills) {
|
|
199
199
|
return { version: CURRENT_LOCK_VERSION, skills: {} };
|
|
200
200
|
}
|
|
201
|
-
if (parsed.version < 2) {
|
|
202
|
-
return { version: CURRENT_LOCK_VERSION, skills: {} };
|
|
203
|
-
}
|
|
204
201
|
if (parsed.version < CURRENT_LOCK_VERSION) {
|
|
205
|
-
|
|
202
|
+
return { version: CURRENT_LOCK_VERSION, skills: {} };
|
|
206
203
|
}
|
|
207
204
|
return parsed;
|
|
208
205
|
} catch {
|