|
75 | 75 | "dep:update:check": "bunx upgradeps",
|
76 | 76 | "dep:update:skip": "bunx upgradeps -u -s",
|
77 | 77 | "depcheck": "bunx depcheck | xargs",
|
78 |
| - "depcheck:ci": "echo NOTE: If this errors out please consider removing dependencies from package.json or adding them to the .depcheckrc.json `ignores` array && bunx depcheck", |
| 78 | + "depcheck:ci": "echo NOTE: If this errors out please consider removing dependencies from package.json or adding them to the .depcheckrc.json 'ignores' array && bunx depcheck", |
79 | 79 | "dev": "bun i && bun run build:bun && bun concurrently -k \"bun run hot-reload\" \"bun run live-reload\" \"bun run format:watch\" \"bun run test:watch:fast\"",
|
80 | 80 | "dev:all": "git pull && bun run dev:pre && bun run lint:quick && bun run lint:ox && bun run dev:build",
|
81 | 81 | "dev:build": "bun run build && bun run docs && bun dev",
|
|
139 | 139 | "cz-gitmoji-adapter": {
|
140 | 140 | "scopes": [
|
141 | 141 | ".depcheckrc.json",
|
142 |
| - ".eslintrc.json", |
143 | 142 | ".eslintignore",
|
| 143 | + ".eslintrc.json", |
144 | 144 | ".gitignore",
|
145 | 145 | ".prettierignore",
|
146 | 146 | ".prettierrc.json",
|
147 | 147 | "license",
|
| 148 | + "readme-api.md", |
148 | 149 | "readme.md",
|
149 |
| - "commitlint.config.ts", |
150 | 150 | "commit-template.hbs",
|
151 |
| - "readme-api.md", |
| 151 | + "commitlint.config.ts", |
152 | 152 | "default-template.hbs",
|
153 | 153 | "jest.config.json",
|
154 | 154 | "package-lock.json",
|
|
168 | 168 | "repo_management_files/errorswarningsresolutions.md",
|
169 | 169 | "repo_management_files/extractfilescopes.js",
|
170 | 170 | "repo_management_files/fileswithgitmojis.md",
|
171 |
| - "repo_management_files/genericcommitmessages.md", |
172 | 171 | "repo_management_files/gitmojisemver-extract.js",
|
173 |
| - "repo_management_files/issues.sh", |
| 172 | + "repo_management_files/genericcommitmessages.md", |
174 | 173 | "repo_management_files/labels.sh",
|
175 | 174 | "repo_management_files/packagejsondocument.md",
|
176 | 175 | "repo_management_files/usefultipsandtricks.md",
|
| 176 | + "repo_management_files/issues.sh", |
177 | 177 | ".github/dependabot.yml",
|
178 | 178 | ".github/workflows/build.yml",
|
179 |
| - ".github/workflows/docs.yml", |
| 179 | + ".github/workflows/depcheck.yml", |
180 | 180 | ".github/workflows/lint.yml",
|
181 |
| - ".github/workflows/release.yml", |
| 181 | + ".github/workflows/docs.yml", |
182 | 182 | ".github/workflows/pr.yml",
|
| 183 | + ".github/workflows/release.yml", |
183 | 184 | ".github/workflows/test.yml",
|
184 |
| - ".github/workflows/depcheck.yml", |
185 | 185 | ".husky/commit-msg",
|
186 | 186 | ".husky/pre-commit",
|
187 | 187 | ".husky/prepare-commit-msg",
|
188 | 188 | ".husky/_/.gitignore",
|
189 | 189 | ".husky/_/applypatch-msg",
|
190 | 190 | ".husky/_/commit-msg",
|
| 191 | + ".husky/_/h", |
191 | 192 | ".husky/_/post-applypatch",
|
192 | 193 | ".husky/_/post-checkout",
|
193 |
| - ".husky/_/h", |
194 | 194 | ".husky/_/post-commit",
|
| 195 | + ".husky/_/post-merge", |
195 | 196 | ".husky/_/post-rewrite",
|
196 | 197 | ".husky/_/pre-applypatch",
|
197 | 198 | ".husky/_/pre-auto-gc",
|
198 | 199 | ".husky/_/pre-commit",
|
| 200 | + ".husky/_/pre-push", |
199 | 201 | ".husky/_/pre-rebase",
|
200 |
| - ".husky/_/post-merge", |
201 | 202 | ".husky/_/prepare-commit-msg",
|
202 |
| - ".husky/_/pre-push", |
203 | 203 | "src/app.ts",
|
204 | 204 | "src/bin/.gitkeep",
|
| 205 | + "src/controllers/.gitkeep", |
205 | 206 | "src/configs/.gitkeep",
|
| 207 | + "src/middleware/.gitkeep", |
206 | 208 | "src/models/.gitkeep",
|
207 | 209 | "src/plugins/.gitkeep",
|
208 | 210 | "src/routes/.gitkeep",
|
209 |
| - "src/views/.gitkeep", |
210 |
| - "src/controllers/.gitkeep", |
211 |
| - "src/middleware/.gitkeep", |
212 | 211 | "src/utils/.gitkeep",
|
213 |
| - "test/app.test.ts", |
| 212 | + "src/views/.gitkeep", |
214 | 213 | "test/.gitkeep",
|
| 214 | + "test/app.test.ts", |
215 | 215 | "test/bin/.gitkeep",
|
216 | 216 | "test/configs/.gitkeep",
|
217 |
| - "test/controllers/.gitkeep", |
218 |
| - "test/models/.gitkeep", |
219 | 217 | "test/middleware/.gitkeep",
|
220 |
| - "test/utils/.gitkeep", |
| 218 | + "test/models/.gitkeep", |
| 219 | + "test/plugins/.gitkeep", |
| 220 | + "test/controllers/.gitkeep", |
221 | 221 | "test/routes/.gitkeep",
|
222 |
| - "test/views/.gitkeep", |
223 |
| - "test/plugins/.gitkeep" |
| 222 | + "test/utils/.gitkeep", |
| 223 | + "test/views/.gitkeep" |
224 | 224 | ],
|
225 | 225 | "questions": {
|
226 | 226 | "scope": "Specify a scope: "
|
|
0 commit comments