Skip to content

Commit 7ce4a3f

Browse files
committed
🐛 fix: fixed script to use ' instead of `
I think this will fix the error
1 parent afe80b0 commit 7ce4a3f

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

Diff for: package.json

+21-21
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"dep:update:check": "bunx upgradeps",
7676
"dep:update:skip": "bunx upgradeps -u -s",
7777
"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",
7979
"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\"",
8080
"dev:all": "git pull && bun run dev:pre && bun run lint:quick && bun run lint:ox && bun run dev:build",
8181
"dev:build": "bun run build && bun run docs && bun dev",
@@ -139,16 +139,16 @@
139139
"cz-gitmoji-adapter": {
140140
"scopes": [
141141
".depcheckrc.json",
142-
".eslintrc.json",
143142
".eslintignore",
143+
".eslintrc.json",
144144
".gitignore",
145145
".prettierignore",
146146
".prettierrc.json",
147147
"license",
148+
"readme-api.md",
148149
"readme.md",
149-
"commitlint.config.ts",
150150
"commit-template.hbs",
151-
"readme-api.md",
151+
"commitlint.config.ts",
152152
"default-template.hbs",
153153
"jest.config.json",
154154
"package-lock.json",
@@ -168,59 +168,59 @@
168168
"repo_management_files/errorswarningsresolutions.md",
169169
"repo_management_files/extractfilescopes.js",
170170
"repo_management_files/fileswithgitmojis.md",
171-
"repo_management_files/genericcommitmessages.md",
172171
"repo_management_files/gitmojisemver-extract.js",
173-
"repo_management_files/issues.sh",
172+
"repo_management_files/genericcommitmessages.md",
174173
"repo_management_files/labels.sh",
175174
"repo_management_files/packagejsondocument.md",
176175
"repo_management_files/usefultipsandtricks.md",
176+
"repo_management_files/issues.sh",
177177
".github/dependabot.yml",
178178
".github/workflows/build.yml",
179-
".github/workflows/docs.yml",
179+
".github/workflows/depcheck.yml",
180180
".github/workflows/lint.yml",
181-
".github/workflows/release.yml",
181+
".github/workflows/docs.yml",
182182
".github/workflows/pr.yml",
183+
".github/workflows/release.yml",
183184
".github/workflows/test.yml",
184-
".github/workflows/depcheck.yml",
185185
".husky/commit-msg",
186186
".husky/pre-commit",
187187
".husky/prepare-commit-msg",
188188
".husky/_/.gitignore",
189189
".husky/_/applypatch-msg",
190190
".husky/_/commit-msg",
191+
".husky/_/h",
191192
".husky/_/post-applypatch",
192193
".husky/_/post-checkout",
193-
".husky/_/h",
194194
".husky/_/post-commit",
195+
".husky/_/post-merge",
195196
".husky/_/post-rewrite",
196197
".husky/_/pre-applypatch",
197198
".husky/_/pre-auto-gc",
198199
".husky/_/pre-commit",
200+
".husky/_/pre-push",
199201
".husky/_/pre-rebase",
200-
".husky/_/post-merge",
201202
".husky/_/prepare-commit-msg",
202-
".husky/_/pre-push",
203203
"src/app.ts",
204204
"src/bin/.gitkeep",
205+
"src/controllers/.gitkeep",
205206
"src/configs/.gitkeep",
207+
"src/middleware/.gitkeep",
206208
"src/models/.gitkeep",
207209
"src/plugins/.gitkeep",
208210
"src/routes/.gitkeep",
209-
"src/views/.gitkeep",
210-
"src/controllers/.gitkeep",
211-
"src/middleware/.gitkeep",
212211
"src/utils/.gitkeep",
213-
"test/app.test.ts",
212+
"src/views/.gitkeep",
214213
"test/.gitkeep",
214+
"test/app.test.ts",
215215
"test/bin/.gitkeep",
216216
"test/configs/.gitkeep",
217-
"test/controllers/.gitkeep",
218-
"test/models/.gitkeep",
219217
"test/middleware/.gitkeep",
220-
"test/utils/.gitkeep",
218+
"test/models/.gitkeep",
219+
"test/plugins/.gitkeep",
220+
"test/controllers/.gitkeep",
221221
"test/routes/.gitkeep",
222-
"test/views/.gitkeep",
223-
"test/plugins/.gitkeep"
222+
"test/utils/.gitkeep",
223+
"test/views/.gitkeep"
224224
],
225225
"questions": {
226226
"scope": "Specify a scope: "

0 commit comments

Comments
 (0)