Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/claude-code-version-watch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ jobs:
echo "New version to intake: $latest"
fi

- name: Install scripts dependencies
run: npm ci --prefix scripts

- name: Discover offsets and integrity
if: steps.mode.outputs.mode == 'new_intake'
run: |
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/npm-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ jobs:
with:
node-version: "22"

- name: Install scripts dependencies
working-directory: .
run: npm ci --prefix scripts

- name: Syntax check
run: |
set -euo pipefail
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
*.tgz
/.verify-*/
/scripts/node_modules/
2 changes: 2 additions & 0 deletions docs/release-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@

新しいupstream版(`X.Y.Z`)の offset と tarball hash を調査し、両方の config に追加する。

> ⚠️ **事前準備**: 以下のスクリプト実行の前に、`npm ci --prefix scripts` で監査スクリプトの依存関係(acorn など)をインストールしておく必要があります。

```
config/claude-native-audited-versions.json
packages/claude-code/config/claude-native-audited-versions.json
Expand Down
38 changes: 38 additions & 0 deletions scripts/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions scripts/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "claude-code-termux-scripts",
"private": true,
"description": "Maintainer-only tooling for tracking upstream @anthropic-ai/claude-code releases. Not published to npm; not part of the packages/claude-code distribution.",
"dependencies": {
"acorn": "8.15.0",
"acorn-walk": "8.3.4"
}
}