Skip to content

Commit 2e8f339

Browse files
Rename for blocks
1 parent 4db385a commit 2e8f339

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+66
-66
lines changed

.github/actions/publish-release/action.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ inputs:
99
description: 'The npm tag to publish with (e.g., latest, preview, nightly).'
1010
required: true
1111
wombat-token-core:
12-
description: 'The npm token for the @google/gemini-cli-core package.'
12+
description: 'The npm token for the @blocksuser/gemini-cli-core package.'
1313
required: true
1414
wombat-token-cli:
15-
description: 'The npm token for the @google/gemini-cli package.'
15+
description: 'The npm token for the @blocksuser/gemini-cli package.'
1616
required: true
1717
github-token:
1818
description: 'The GitHub token for creating the release.'
@@ -48,34 +48,34 @@ runs:
4848
registry-url: 'https://wombat-dressing-room.appspot.com'
4949
scope: '@google'
5050

51-
- name: 'Publish @google/gemini-cli-core'
51+
- name: 'Publish @blocksuser/gemini-cli-core'
5252
working-directory: '${{ inputs.working-directory }}'
5353
env:
5454
NODE_AUTH_TOKEN: '${{ inputs.wombat-token-core }}'
5555
run: |-
5656
npm publish \
5757
--dry-run="${{ inputs.dry-run }}" \
58-
--workspace="@google/gemini-cli-core" \
58+
--workspace="@blocksuser/gemini-cli-core" \
5959
--tag="${{ inputs.npm-tag }}"
6060
shell: 'bash'
6161

6262
- name: 'Install latest core package'
6363
working-directory: '${{ inputs.working-directory }}'
6464
if: '${{ inputs.dry-run == "false" }}'
6565
run: |-
66-
npm install "@google/gemini-cli-core@${{ inputs.release-version }}" \
67-
--workspace="@google/gemini-cli" \
66+
npm install "@blocksuser/gemini-cli-core@${{ inputs.release-version }}" \
67+
--workspace="@blocksuser/gemini-cli" \
6868
--save-exact
6969
shell: 'bash'
7070

71-
- name: 'Publish @google/gemini-cli'
71+
- name: 'Publish @blocksuser/gemini-cli'
7272
working-directory: '${{ inputs.working-directory }}'
7373
env:
7474
NODE_AUTH_TOKEN: '${{ inputs.wombat-token-cli }}'
7575
run: |-
7676
npm publish \
7777
--dry-run="${{ inputs.dry-run }}" \
78-
--workspace="@google/gemini-cli" \
78+
--workspace="@blocksuser/gemini-cli" \
7979
--tag="${{ inputs.npm-tag }}"
8080
shell: 'bash'
8181

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@google/gemini-cli",
2+
"name": "@blocksuser/gemini-cli",
33
"version": "0.7.0-nightly.20250912.68035591",
44
"engines": {
55
"node": ">=20.0.0"

packages/a2a-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@google/gemini-cli-a2a-server",
2+
"name": "@blocksuser/gemini-cli-a2a-server",
33
"version": "0.7.0-nightly.20250912.68035591",
44
"private": true,
55
"description": "Gemini CLI A2A Server",

packages/a2a-server/src/agent/task.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import type {
2626
Config,
2727
UserTierId,
2828
AnsiOutput,
29-
} from '@google/gemini-cli-core';
29+
} from '@blocksuser/gemini-cli-core';
3030
import type { RequestContext } from '@a2a-js/sdk/server';
3131
import { type ExecutionEventBus } from '@a2a-js/sdk/server';
3232
import type {

packages/a2a-server/src/http/endpoints.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import type { AddressInfo } from 'node:net';
1616
import { createApp, updateCoderAgentCardUrl } from './app.js';
1717
import type { TaskMetadata } from '../types.js';
1818
import { createMockConfig } from '../utils/testing_utils.js';
19-
import type { Config } from '@google/gemini-cli-core';
19+
import type { Config } from '@blocksuser/gemini-cli-core';
2020

2121
// Mock the logger to avoid polluting test output
2222
// Comment out to help debug

packages/a2a-server/src/utils/testing_utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import {
1414
DEFAULT_TRUNCATE_TOOL_OUTPUT_LINES,
1515
DEFAULT_TRUNCATE_TOOL_OUTPUT_THRESHOLD,
1616
GeminiClient,
17-
} from '@google/gemini-cli-core';
18-
import type { Config, Storage } from '@google/gemini-cli-core';
17+
} from '@blocksuser/gemini-cli-core';
18+
import type { Config, Storage } from '@blocksuser/gemini-cli-core';
1919
import { expect, vi } from 'vitest';
2020

2121
export function createMockConfig(

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@google/gemini-cli",
2+
"name": "@blocksuser/gemini-cli",
33
"version": "0.7.0-nightly.20250912.68035591",
44
"description": "Gemini CLI",
55
"repository": {

packages/cli/src/config/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import type {
1616
FileFilteringOptions,
1717
MCPServerConfig,
1818
OutputFormat,
19-
} from '@google/gemini-cli-core';
19+
} from '@blocksuser/gemini-cli-core';
2020
import { extensionsCommand } from '../commands/extensions.js';
2121
import {
2222
Config,

packages/cli/src/config/extension.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import {
3030
type MCPServerConfig,
3131
ClearcutLogger,
3232
type Config,
33-
} from '@google/gemini-cli-core';
33+
} from '@blocksuser/gemini-cli-core';
3434
import { execSync } from 'node:child_process';
3535
import { SettingScope, loadSettings } from './settings.js';
3636
import { isWorkspaceTrusted } from './trustedFolders.js';
@@ -70,9 +70,9 @@ vi.mock('./trustedFolders.js', async (importOriginal) => {
7070
};
7171
});
7272

73-
vi.mock('@google/gemini-cli-core', async (importOriginal) => {
73+
vi.mock('@blocksuser/gemini-cli-core', async (importOriginal) => {
7474
const actual =
75-
await importOriginal<typeof import('@google/gemini-cli-core')>();
75+
await importOriginal<typeof import('@blocksuser/gemini-cli-core')>();
7676
const mockLogExtensionInstallEvent = vi.fn();
7777
return {
7878
...actual,

packages/cli/src/config/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
import type {
88
MCPServerConfig,
99
GeminiCLIExtension,
10-
} from '@google/gemini-cli-core';
10+
} from '@blocksuser/gemini-cli-core';
1111
import {
1212
GEMINI_DIR,
1313
Storage,
1414
ClearcutLogger,
1515
Config,
1616
ExtensionInstallEvent,
17-
} from '@google/gemini-cli-core';
17+
} from '@blocksuser/gemini-cli-core';
1818
import * as fs from 'node:fs';
1919
import * as path from 'node:path';
2020
import * as os from 'node:os';

0 commit comments

Comments
 (0)