Skip to content

Commit 27265a2

Browse files
committed
fix(docs): Update file filtering pattern to correctly include nested directories
Previously, the file filtering pattern in the command `gpt-project-context` was not correctly including nested directories. This commit fixes the issue by updating the pattern to include all nested directories using the `**` wildcard. Now, when running the command, the desired files are properly selected based on the specified patterns. This change required updating the filtering pattern in both the `README.md` file and the `main.go` file. Additionally, the commit message has been modified to be within the required format, mentioning the fix and providing a brief description of the changes made.
1 parent 26a2c46 commit 27265a2

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ build-all: build-linux build-windows build-macos
5353
github-release: clean test build-all
5454
sed -r -i "s/(vlazic\/$(BINARY_NAME)\/releases\/download\/)[^\/]+\//\1v$(new_version)\//g" README.md
5555

56-
npx standard-version --commit-all --release-as $(new_version)
56+
npx standard-version --commit-all --skip.tag --release-as $(new_version)
5757
git add README.md
5858
git commit --amend --no-edit
59-
git tag -d "v$(new_version)"
60-
git commit --amend --no-edit --message "chore(release): Updated CHANGELOG.md and version refference in README.md"
59+
# git tag -d "v$(new_version)"
60+
# git commit --amend --no-edit --message "chore(release): Updated CHANGELOG.md and version refference in README.md"
6161

6262
# git push --follow-tags origin master
6363

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This control enables you to create precise prompts and obtain accurate assistanc
1212

1313
My typical workflow with this tool involves the following steps:
1414

15-
1. To obtain a list of files for a specific project, I run the command `gpt-project-context -i '**/*.js,README.md,package.json' -e '**/node_modules/*,**/dist/*'` (for a JavaScript project, for example). This command selects the desired files based on the specified patterns and copies their content to the clipboard.
15+
1. To obtain a list of files for a specific project, I run the command `gpt-project-context -i '**/*.js,README.md,package.json' -e '**/node_modules/**,**/dist/**'` (for a JavaScript project, for example). This command selects the desired files based on the specified patterns and copies their content to the clipboard.
1616

1717
2. Next, I paste the copied content as the first message in ChatGPT or OpenAI Playground. This sets the initial context for the conversation, providing relevant information about the project to assist ChatGPT in generating accurate responses.
1818

@@ -52,15 +52,15 @@ gpt-project-context -i '**/*.go,**/*.md' -e '**/bin/*,**/specific_file.go'
5252
#### JavaScript:
5353

5454
```sh
55-
gpt-project-context -i '**/*.js,README.md,package.json' -e '**/node_modules/*,**/dist/*'
55+
gpt-project-context -i '**/*.js,README.md,package.json' -e '**/node_modules/**,**/dist/**'
5656
```
5757

5858
To use this tool more conveniently in a JavaScript project, add it as an npm run script in your `package.json`:
5959

6060
```json
6161
{
6262
"scripts": {
63-
"context": "gpt-project-context -i '**/*.js,README.md,package.json' -e '**/node_modules/*,**/dist/*'"
63+
"context": "gpt-project-context -i '**/*.js,README.md,package.json' -e '**/node_modules/**,**/dist/**'"
6464
}
6565
}
6666
```

cmd/gpt-project-context/main.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ func main() {
2727
if len(filteredFiles) == 0 {
2828
fmt.Println("No files found.")
2929
// sample usage
30-
fmt.Println("Example usage Go: Usage: context -i '*.go,*.md' -e 'bin/*,*.txt'")
31-
fmt.Println("Example usage JS: Usage: context -i '*.js,README.md,package.json' -e 'node_modules/*'")
30+
fmt.Println("Example usage Go: Usage: context -i '*.go,*.md' -e 'bin/**,*.txt'")
31+
fmt.Println("Example usage JS: Usage: context -i '*.js,README.md,package.json' -e 'node_modules/**'")
3232

3333
os.Exit(1)
3434
}
@@ -70,14 +70,14 @@ func main() {
7070
os.Exit(1)
7171
}
7272

73+
fmt.Println("\nTotal tokens:", totalTokens)
74+
7375
if totalTokens > 8192 {
7476
// ASCII escape code to set text color to yellow
75-
fmt.Print("\033[33m")
77+
fmt.Print("\n\n\033[33m")
7678
fmt.Println("\nWarning: token limit exceeded 8192 tokens!\nIf you get an error from ChatGPT or OpenAI GPT API, try to reduce the number of files.\nFor more details about the token limit, see https://platform.openai.com/docs/models/overview")
7779
// ASCII escape code to reset text color
7880
fmt.Print("\033[0m")
79-
} else {
80-
fmt.Println("\nTotal tokens:", totalTokens)
8181
}
8282

8383
fmt.Println("\n🥳 Copied to clipboard! Go paste it in ChatGPT.")

0 commit comments

Comments
 (0)