Skip to content

Commit a0ba981

Browse files
committed
Rename
1 parent 7ff28e3 commit a0ba981

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ executors:
99
default_image:
1010
docker:
1111
- image: ghcr.io/astral-sh/uv:python<<pipeline.parameters.python_version>>-bookworm
12-
working_directory: /graph-sitter
12+
working_directory: /codegen-sdk
1313
environment:
1414
UV_COMPILE_BYTECODE: 1
1515
UV_LINK_MODE: copy

.github/CODEOWNERS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
* @codegen-sh/graph-sitter @codegen-team
1+
* @codegen-sh/codegen-sdk @codegen-team
22
**/skills @codegen-sh/capabilities @codegen-team @codegen-sh/capabilities
3-
**/code_generation @codegen-sh/graph-sitter @codegen-team
3+
**/code_generation @codegen-sh/codegen-sdk @codegen-team

.github/codecov.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,26 @@ component_management:
77
- type: project # in this case every component that doens't have a status defined will have a project type one
88
threshold: 0 # Shouldn't remove coverage
99
individual_components:
10-
- component_id: graph-sitter-python # this is an identifier that should not be changed
11-
name: graph-sitter-python # this is a display name, and can be changed freely
10+
- component_id: codegen-sdk-python # this is an identifier that should not be changed
11+
name: codegen-sdk-python # this is a display name, and can be changed freely
1212
paths:
1313
- src/graph_sitter/python/**
1414
statuses:
1515
- type: project # in this case every component that doens't have a status defined will have a project type one
1616
threshold: 0 # Shouldn't remove coverage
1717
- type: patch
1818
target: 50 # Language specific featues must be 100% covered
19-
- component_id: graph-sitter-typescript
20-
name: graph-sitter-typescript
19+
- component_id: codegen-sdk-typescript
20+
name: codegen-sdk-typescript
2121
paths:
2222
- src/graph_sitter/typescript/**
2323
statuses:
2424
- type: project # in this case every component that doens't have a status defined will have a project type one
2525
threshold: 0 # Shouldn't remove coverage
2626
- type: patch
2727
target: 50 # Language specific featues must be 100% covered
28-
- component_id: graph-sitter-core
29-
name: graph-sitter-core
28+
- component_id: codegen-sdk-core
29+
name: codegen-sdk-core
3030
paths:
3131
- src/graph_sitter/**
3232
- component_id: codegen-git

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ src/**/*.html
6060
.ccache/
6161
uv-*.tar.gz
6262
.venv
63-
graph-sitter-types/out/**
64-
graph-sitter-types/typings/**
63+
codegen-sdk-types/out/**
64+
codegen-sdk-types/typings/**
6565
coverage.json
6666
tests/verified_codemods/codemod_data/repo_commits.json
6767

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ENV UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy
55
ENV GITHUB_WORKSPACE=/workspace
66
LABEL com.circleci.preserve-entrypoint=true
77
# RUN uv tool install keyring --with keyrings.codeartifact
8-
## Change the working directory to the `graph-sitter` directory
8+
## Change the working directory to the `codegen-sdk` directory
99
FROM base_uv AS install-tools
1010
RUN apt-get update && apt-get install -y build-essential curl git
1111
RUN curl -fsSL https://deb.nodesource.com/setup_23.x -o nodesource_setup.sh
@@ -15,7 +15,7 @@ RUN corepack enable
1515
RUN --mount=type=cache,target=/root/.cache/uv uv pip install --system coverage
1616
RUN --mount=type=cache,target=/root/.cache/uv uv tool install codecov-cli --python 3.10
1717
RUN --mount=type=cache,target=/root/.cache/uv uv tool install pre-commit --with pre-commit-uv
18-
WORKDIR /graph-sitter
18+
WORKDIR /codegen-sdk
1919
ENTRYPOINT [ "uv", "run", "--frozen", "/bin/bash"]
2020
FROM install-tools AS base-image
2121
## Install dependencies
@@ -24,7 +24,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
2424
--mount=type=bind,source=pyproject.toml,target=pyproject.toml \
2525
--mount=type=bind,source=hatch.toml,target=hatch.toml \
2626
uv sync --frozen --no-install-workspace --all-extras
27-
ADD . /graph-sitter
27+
ADD . /codegen-sdk
2828
## Sync the project
2929
RUN --mount=type=cache,target=/root/.cache/uv \
3030
uv sync --frozen --all-extras

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Codegen Docs
22

33
This unites docs from:
4-
- graph-sitter (this repo)
4+
- codegen-sdk (this repo)
55
- codegen-cli
66

77
## Development

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "graph-sitter"
2+
name = "codegen-sdk"
33
dynamic = ["version", "urls"]
44
description = "Add your description here"
55
readme = "README.md"

tests/unit/api_doc_generation/test_codemod_writer_decorators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
@pytest.mark.skip("broken after repo split, fix or move over")
1111
def test_get_documented_objects():
12-
"""Test that importing everything in graph-sitter
12+
"""Test that importing everything in codegen-sdk
1313
doesn't invoke any functionality (incase someone leaves actual
1414
functionality at the top level of a file).
1515

uv.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)