|
74 | 74 | "dep:update:check": "bunx upgradeps",
|
75 | 75 | "dep:update:skip": "bunx upgradeps -u -s",
|
76 | 76 | "depcheck": "bunx depcheck | xargs",
|
77 |
| - "depcheck:ci": "bunx depcheck", |
| 77 | + "depcheck:ci": "echo NOTE: If this errors out please consider removing dependencies or adding them to the .depcheckrc.json `ignores` array && bunx depcheck", |
78 | 78 | "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\"",
|
79 | 79 | "dev:all": "git pull && bun run dev:pre && bun run lint:quick && bun run lint:ox && bun run dev:build",
|
80 | 80 | "dev:build": "bun run build && bun run docs && bun dev",
|
|
137 | 137 | "cz-gitmoji-adapter": {
|
138 | 138 | "scopes": [
|
139 | 139 | ".depcheckrc.json",
|
140 |
| - ".eslintrc.json", |
141 | 140 | ".eslintignore",
|
| 141 | + ".eslintrc.json", |
142 | 142 | ".gitignore",
|
143 | 143 | ".prettierignore",
|
| 144 | + ".prettierrc.json", |
144 | 145 | "license",
|
145 | 146 | "readme-api.md",
|
146 | 147 | "readme.md",
|
147 |
| - ".prettierrc.json", |
| 148 | + "commit-template.hbs", |
148 | 149 | "commitlint.config.ts",
|
149 | 150 | "default-template.hbs",
|
150 |
| - "commit-template.hbs", |
151 | 151 | "emojitypescommitmessages.txt",
|
152 | 152 | "jest.config.json",
|
153 | 153 | "package-lock.json",
|
|
156 | 156 | "renovate.json",
|
157 | 157 | "tsconfig.json",
|
158 | 158 | "typedoc.json",
|
159 |
| - "public/.gitkeep", |
160 | 159 | ".vscode/settings.json",
|
| 160 | + "public/.gitkeep", |
161 | 161 | "repo_management_files/branchnamingconventions.md",
|
162 | 162 | "repo_management_files/cz-type-extract.js",
|
163 | 163 | "repo_management_files/directorystructuredocument.md",
|
| 164 | + "repo_management_files/extractfilescopes.js", |
164 | 165 | "repo_management_files/cz-emoji-type-extract.js",
|
165 |
| - "repo_management_files/genericcommitmessages.md", |
166 | 166 | "repo_management_files/gitmojisemver-extract.js",
|
167 |
| - "repo_management_files/extractfilescopes.js", |
| 167 | + "repo_management_files/genericcommitmessages.md", |
168 | 168 | "repo_management_files/labels.sh",
|
169 |
| - "repo_management_files/issues.sh", |
170 | 169 | "repo_management_files/packagejsondocument.md",
|
| 170 | + "repo_management_files/issues.sh", |
171 | 171 | ".github/dependabot.yml",
|
172 | 172 | ".github/workflows/build.yml",
|
173 |
| - ".github/workflows/docs.yml", |
174 | 173 | ".github/workflows/depcheck.yml",
|
| 174 | + ".github/workflows/docs.yml", |
175 | 175 | ".github/workflows/lint.yml",
|
176 |
| - ".github/workflows/release.yml", |
177 |
| - ".github/workflows/test.yml", |
178 | 176 | ".github/workflows/pr.yml",
|
179 |
| - ".husky/commit-msg", |
| 177 | + ".github/workflows/test.yml", |
| 178 | + ".github/workflows/release.yml", |
180 | 179 | ".husky/pre-commit",
|
181 | 180 | ".husky/prepare-commit-msg",
|
| 181 | + ".husky/commit-msg", |
182 | 182 | ".husky/_/.gitignore",
|
| 183 | + ".husky/_/applypatch-msg", |
183 | 184 | ".husky/_/commit-msg",
|
184 | 185 | ".husky/_/h",
|
185 |
| - ".husky/_/post-applypatch", |
186 |
| - ".husky/_/post-commit", |
187 | 186 | ".husky/_/post-checkout",
|
188 |
| - ".husky/_/applypatch-msg", |
| 187 | + ".husky/_/post-commit", |
189 | 188 | ".husky/_/post-merge",
|
190 | 189 | ".husky/_/post-rewrite",
|
191 | 190 | ".husky/_/pre-applypatch",
|
| 191 | + ".husky/_/post-applypatch", |
192 | 192 | ".husky/_/pre-auto-gc",
|
193 | 193 | ".husky/_/pre-commit",
|
| 194 | + ".husky/_/pre-push", |
194 | 195 | ".husky/_/pre-rebase",
|
195 | 196 | ".husky/_/prepare-commit-msg",
|
196 |
| - ".husky/_/pre-push", |
197 |
| - "test/app.test.ts", |
| 197 | + "src/app.ts", |
| 198 | + "src/bin/.gitkeep", |
| 199 | + "src/models/.gitkeep", |
| 200 | + "src/middleware/.gitkeep", |
| 201 | + "src/controllers/.gitkeep", |
| 202 | + "src/configs/.gitkeep", |
| 203 | + "src/utils/.gitkeep", |
| 204 | + "src/routes/.gitkeep", |
| 205 | + "src/plugins/.gitkeep", |
| 206 | + "src/views/.gitkeep", |
198 | 207 | "test/.gitkeep",
|
| 208 | + "test/app.test.ts", |
199 | 209 | "test/bin/.gitkeep",
|
200 | 210 | "test/controllers/.gitkeep",
|
201 | 211 | "test/configs/.gitkeep",
|
202 |
| - "test/middleware/.gitkeep", |
| 212 | + "test/routes/.gitkeep", |
203 | 213 | "test/plugins/.gitkeep",
|
204 | 214 | "test/models/.gitkeep",
|
| 215 | + "test/middleware/.gitkeep", |
205 | 216 | "test/utils/.gitkeep",
|
206 |
| - "test/views/.gitkeep", |
207 |
| - "test/routes/.gitkeep", |
208 |
| - "src/app.ts", |
209 |
| - "src/controllers/.gitkeep", |
210 |
| - "src/bin/.gitkeep", |
211 |
| - "src/middleware/.gitkeep", |
212 |
| - "src/models/.gitkeep", |
213 |
| - "src/routes/.gitkeep", |
214 |
| - "src/plugins/.gitkeep", |
215 |
| - "src/configs/.gitkeep", |
216 |
| - "src/utils/.gitkeep", |
217 |
| - "src/views/.gitkeep" |
| 217 | + "test/views/.gitkeep" |
218 | 218 | ],
|
219 | 219 | "questions": {
|
220 | 220 | "scope": "Specify a scope: "
|
|
0 commit comments