mirror of
https://github.com/harivansh-afk/clanker-agent.git
synced 2026-04-22 00:00:31 +00:00
chore: rebrand companion-os to clanker-agent
- Rename all package names from companion-* to clanker-* - Update npm scopes from @mariozechner to @harivansh-afk - Rename config directories .companion -> .clanker - Rename environment variables COMPANION_* -> CLANKER_* - Update all documentation, README files, and install scripts - Rename package directories (companion-channels, companion-grind, companion-teams) - Update GitHub URLs to harivansh-afk/clanker-agent - Preserve full git history from companion-cloud monorepo
This commit is contained in:
parent
f93fe7d1a0
commit
67168d8289
356 changed files with 2249 additions and 10223 deletions
|
|
@ -139,7 +139,7 @@ describe("CombinedAutocompleteProvider", () => {
|
|||
let outsideDir = "";
|
||||
|
||||
beforeEach(() => {
|
||||
rootDir = mkdtempSync(join(tmpdir(), "companion-autocomplete-root-"));
|
||||
rootDir = mkdtempSync(join(tmpdir(), "clanker-autocomplete-root-"));
|
||||
baseDir = join(rootDir, "cwd");
|
||||
outsideDir = join(rootDir, "outside");
|
||||
mkdirSync(baseDir, { recursive: true });
|
||||
|
|
@ -339,9 +339,9 @@ describe("CombinedAutocompleteProvider", () => {
|
|||
|
||||
test("includes hidden paths but excludes .git", () => {
|
||||
setupFolder(baseDir, {
|
||||
dirs: [".companion", ".github", ".git"],
|
||||
dirs: [".clanker", ".github", ".git"],
|
||||
files: {
|
||||
".companion/config.json": "{}",
|
||||
".clanker/config.json": "{}",
|
||||
".github/workflows/ci.yml": "name: ci",
|
||||
".git/config": "[core]",
|
||||
},
|
||||
|
|
@ -356,7 +356,7 @@ describe("CombinedAutocompleteProvider", () => {
|
|||
const result = provider.getSuggestions([line], 0, line.length);
|
||||
|
||||
const values = result?.items.map((item) => item.value) ?? [];
|
||||
assert.ok(values.includes("@.companion/"));
|
||||
assert.ok(values.includes("@.clanker/"));
|
||||
assert.ok(values.includes("@.github/"));
|
||||
assert.ok(
|
||||
!values.some(
|
||||
|
|
@ -432,7 +432,7 @@ describe("CombinedAutocompleteProvider", () => {
|
|||
let baseDir = "";
|
||||
|
||||
beforeEach(() => {
|
||||
baseDir = mkdtempSync(join(tmpdir(), "companion-autocomplete-"));
|
||||
baseDir = mkdtempSync(join(tmpdir(), "clanker-autocomplete-"));
|
||||
});
|
||||
|
||||
afterEach(() => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue