Skip to content

Commit dbdcf0d

Browse files
authored
Merge pull request #13 from LLMTooling/fix-ctags-package-rename
Fix ctags package import rename
2 parents 0b26c01 + 2581964 commit dbdcf0d

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Dedicated job for testing AST search functionality.
4646
### Authentication
4747

4848
The workflow uses `GITHUB_TOKEN` to authenticate with GitHub Packages for:
49-
- `@LLMTooling/code-search-mcp-universal-ctags`
49+
- `@LLMTooling/universal-ctags-node`
5050
- Other private GitHub packages in the `@LLMTooling` scope
5151

5252
This token is automatically provided by GitHub Actions.

src/symbol-search/ctags-integration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { execFile } from 'child_process';
66
import { promisify } from 'util';
77
import { promises as fs } from 'fs';
88
import path from 'path';
9-
import { ctagsPath } from '@LLMTooling/code-search-mcp-universal-ctags';
9+
import { ctagsPath } from '@LLMTooling/universal-ctags-node';
1010
import type { CTagsTag, SupportedLanguage } from '../types/index.js';
1111

1212
const execFileAsync = promisify(execFile);

src/types/universal-ctags.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
2-
* Type declarations for @LLMTooling/code-search-mcp-universal-ctags
2+
* Type declarations for @LLMTooling/universal-ctags-node
33
*/
4-
declare module '@LLMTooling/code-search-mcp-universal-ctags' {
4+
declare module '@LLMTooling/universal-ctags-node' {
55
/**
66
* Path to the universal-ctags binary
77
*/

0 commit comments

Comments
 (0)