Skip to content

Commit 8a43e3a

Browse files
committed
change directory
1 parent 8456d1f commit 8a43e3a

File tree

40 files changed

+43
-222
lines changed

40 files changed

+43
-222
lines changed

.github/workflows/auto-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: [main]
66
paths:
7-
- 'recipes/**'
7+
- 'codemods/**'
88
- '.github/workflows/auto-publish.yml'
99
- 'scripts/auto-publish.mjs'
1010

@@ -62,7 +62,7 @@ jobs:
6262
if [ -n "$(git status --porcelain)" ]; then
6363
git config --local user.email "[email protected]"
6464
git config --local user.name "GitHub Action"
65-
git add recipes/*/codemod.yaml
65+
git add codemods/*/codemod.yaml
6666
git commit -m "chore: auto-bump versions for published codemods [skip ci]"
6767
git push
6868
fi

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ npm run test
2424
## Scaffolding a new codemod
2525

2626
```bash
27-
npx codemod@latest init recipes/my-codemod
27+
npx codemod@latest init codemods/my-codemod
2828
```
2929

3030
During prompts, select appropriate options for your use case. Placeholders to adapt:

biome.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://biomejs.dev/schemas/2.2.2/schema.json",
33
"files": {
44
"includes": ["."],
5-
"experimentalScannerIgnores": ["recipes/**/tests/**/fixtures/**"]
5+
"experimentalScannerIgnores": ["codemods/**/tests/**/fixtures/**"]
66
},
77
"formatter": {
88
"enabled": true,
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)