You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
name_template: '{{ .ProjectName }}-full_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ with .Arm }}v{{ . }}{{ end }}{{ with .Mips }}_{{ . }}{{ end }}{{ if not (eq .Amd64 "v1") }}{{ .Amd64 }}{{ end }}'
48
+
formats:
49
+
- tar.gz
50
+
format_overrides:
51
+
- goos: windows
52
+
formats:
53
+
- zip
54
+
files:
55
+
- README.md
56
+
- LICENSE*
57
+
- src: scanner/sg-rules/*
58
+
dst: sg-rules
59
+
- src: bundled-tools/{{ .Os }}_{{ .Arch }}/ast-grep{{ if eq .Os "windows" }}.exe{{ end }}
60
+
strip_parent: true
61
+
- src: bundled-tools/{{ .Os }}_{{ .Arch }}/sg{{ if eq .Os "windows" }}.exe{{ end }}
62
+
strip_parent: true
63
+
64
+
checksum:
65
+
name_template: 'checksums.txt'
66
+
67
+
changelog:
68
+
sort: asc
69
+
filters:
70
+
exclude:
71
+
- '^docs:'
72
+
- '^test:'
73
+
- '^chore:'
74
+
75
+
release:
76
+
github:
77
+
owner: JordanCoin
78
+
name: codemap
79
+
80
+
brews:
81
+
- repository:
82
+
owner: JordanCoin
83
+
name: homebrew-tap
84
+
token: "{{ .Env.HOMEBREW_TAP_TOKEN }}"
85
+
ids:
86
+
- default
87
+
directory: .
88
+
homepage: https://github.com/JordanCoin/codemap
89
+
description: Generate a brain map of your codebase for LLM context
90
+
license: MIT
91
+
dependencies:
92
+
- name: ast-grep
93
+
install: |
94
+
bin.install "codemap"
95
+
(pkgshare/"sg-rules").install Dir["sg-rules/*.yml"] if Dir.exist?("sg-rules")
96
+
caveats: |
97
+
The --deps mode uses ast-grep for code analysis.
98
+
test: |
99
+
system "#{bin}/codemap", "--help"
100
+
101
+
scoops:
102
+
- repository:
103
+
owner: JordanCoin
104
+
name: scoop-codemap
105
+
token: "{{ .Env.SCOOP_TOKEN }}"
106
+
ids:
107
+
- default
108
+
homepage: https://github.com/JordanCoin/codemap
109
+
description: Generate a brain map of your codebase for LLM context
110
+
license: MIT
111
+
depends:
112
+
- ast-grep
113
+
114
+
winget:
115
+
- name: codemap
116
+
ids:
117
+
- default
118
+
publisher: JordanCoin
119
+
short_description: Generate a brain map of your codebase for LLM context
0 commit comments