skopix 2.0.72 → 2.0.73

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.
@@ -3803,6 +3803,7 @@ async function saveSavedUrls(urls) {
3803
3803
  await fs.ensureDir(path.dirname(file));
3804
3804
  await fs.writeFile(file, yaml.stringify(urls));
3805
3805
  }
3806
+ const LIBRARY_FILE = () => path.join(os.homedir(), '.skopix', 'step-library.yaml');
3806
3807
  const LIBRARY_PENDING_FILE = () => path.join(os.homedir(), '.skopix', 'step-library-pending.yaml');
3807
3808
 
3808
3809
  async function listPendingSteps() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skopix",
3
- "version": "2.0.72",
3
+ "version": "2.0.73",
4
4
  "description": "Browser-based QA tool — record tests by using your app, replay them deterministically, generate Playwright code automatically",
5
5
  "main": "cli/index.js",
6
6
  "bin": {
@@ -5608,6 +5608,7 @@ async function saveOllamaConfig() {
5608
5608
 
5609
5609
  // ── SAVED URLS ───────────────────────────────────────────────────────────────
5610
5610
  let savedUrlsCache = [];
5611
+ let libraryStepsCache = [];
5611
5612
 
5612
5613
  async function fetchSavedUrls() {
5613
5614
  try {