Skip to content

Commit 999b432

Browse files
committed
💚 fix-ci(package.json): added informational message to depcheck:ci script
added message to help the user know what to do if the workflow errors out
1 parent 07da093 commit 999b432

File tree

1 file changed

+30
-30
lines changed

1 file changed

+30
-30
lines changed

Diff for: package.json

+30-30
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"dep:update:check": "bunx upgradeps",
7575
"dep:update:skip": "bunx upgradeps -u -s",
7676
"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",
7878
"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\"",
7979
"dev:all": "git pull && bun run dev:pre && bun run lint:quick && bun run lint:ox && bun run dev:build",
8080
"dev:build": "bun run build && bun run docs && bun dev",
@@ -137,17 +137,17 @@
137137
"cz-gitmoji-adapter": {
138138
"scopes": [
139139
".depcheckrc.json",
140-
".eslintrc.json",
141140
".eslintignore",
141+
".eslintrc.json",
142142
".gitignore",
143143
".prettierignore",
144+
".prettierrc.json",
144145
"license",
145146
"readme-api.md",
146147
"readme.md",
147-
".prettierrc.json",
148+
"commit-template.hbs",
148149
"commitlint.config.ts",
149150
"default-template.hbs",
150-
"commit-template.hbs",
151151
"emojitypescommitmessages.txt",
152152
"jest.config.json",
153153
"package-lock.json",
@@ -156,65 +156,65 @@
156156
"renovate.json",
157157
"tsconfig.json",
158158
"typedoc.json",
159-
"public/.gitkeep",
160159
".vscode/settings.json",
160+
"public/.gitkeep",
161161
"repo_management_files/branchnamingconventions.md",
162162
"repo_management_files/cz-type-extract.js",
163163
"repo_management_files/directorystructuredocument.md",
164+
"repo_management_files/extractfilescopes.js",
164165
"repo_management_files/cz-emoji-type-extract.js",
165-
"repo_management_files/genericcommitmessages.md",
166166
"repo_management_files/gitmojisemver-extract.js",
167-
"repo_management_files/extractfilescopes.js",
167+
"repo_management_files/genericcommitmessages.md",
168168
"repo_management_files/labels.sh",
169-
"repo_management_files/issues.sh",
170169
"repo_management_files/packagejsondocument.md",
170+
"repo_management_files/issues.sh",
171171
".github/dependabot.yml",
172172
".github/workflows/build.yml",
173-
".github/workflows/docs.yml",
174173
".github/workflows/depcheck.yml",
174+
".github/workflows/docs.yml",
175175
".github/workflows/lint.yml",
176-
".github/workflows/release.yml",
177-
".github/workflows/test.yml",
178176
".github/workflows/pr.yml",
179-
".husky/commit-msg",
177+
".github/workflows/test.yml",
178+
".github/workflows/release.yml",
180179
".husky/pre-commit",
181180
".husky/prepare-commit-msg",
181+
".husky/commit-msg",
182182
".husky/_/.gitignore",
183+
".husky/_/applypatch-msg",
183184
".husky/_/commit-msg",
184185
".husky/_/h",
185-
".husky/_/post-applypatch",
186-
".husky/_/post-commit",
187186
".husky/_/post-checkout",
188-
".husky/_/applypatch-msg",
187+
".husky/_/post-commit",
189188
".husky/_/post-merge",
190189
".husky/_/post-rewrite",
191190
".husky/_/pre-applypatch",
191+
".husky/_/post-applypatch",
192192
".husky/_/pre-auto-gc",
193193
".husky/_/pre-commit",
194+
".husky/_/pre-push",
194195
".husky/_/pre-rebase",
195196
".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",
198207
"test/.gitkeep",
208+
"test/app.test.ts",
199209
"test/bin/.gitkeep",
200210
"test/controllers/.gitkeep",
201211
"test/configs/.gitkeep",
202-
"test/middleware/.gitkeep",
212+
"test/routes/.gitkeep",
203213
"test/plugins/.gitkeep",
204214
"test/models/.gitkeep",
215+
"test/middleware/.gitkeep",
205216
"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"
218218
],
219219
"questions": {
220220
"scope": "Specify a scope: "

0 commit comments

Comments
 (0)