@blxzer/cursor-trellis 0.2.5 → 0.2.6
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/smart-search.js +2 -2
- package/package.json +1 -1
package/bin/smart-search.js
CHANGED
|
@@ -8,14 +8,14 @@ import { fileURLToPath } from "node:url";
|
|
|
8
8
|
const __filename = fileURLToPath(import.meta.url);
|
|
9
9
|
const __dirname = dirname(__filename);
|
|
10
10
|
|
|
11
|
-
// smart-search
|
|
12
|
-
// Navigate from bin/ -> ../ -> node_modules/@blxzer/smart-search/bin/smart-search.js
|
|
11
|
+
// smart-search npm wrapper is at: node_modules/@blxzer/smart-search/npm/bin/smart-search.js
|
|
13
12
|
const smartSearchBin = join(
|
|
14
13
|
__dirname,
|
|
15
14
|
"..",
|
|
16
15
|
"node_modules",
|
|
17
16
|
"@blxzer",
|
|
18
17
|
"smart-search",
|
|
18
|
+
"npm",
|
|
19
19
|
"bin",
|
|
20
20
|
"smart-search.js"
|
|
21
21
|
);
|
package/package.json
CHANGED