Skip to content

Commit 5a9714f

Browse files
chore: wip
1 parent b7e5704 commit 5a9714f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ jobs:
3434
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
3535

3636
- name: Create GitHub Release
37-
uses: stacksjs/action-releaser@v1.2.6
37+
uses: stacksjs/action-releaser@v1.2.9
3838
env:
3939
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

packages/bun-queue/src/commands/script-loader.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export class ScriptLoader {
105105
* defined path
106106
* @param name - the name of the mapping. Note: do not include angle brackets
107107
* @param mappedPath - if a relative path is passed, it's relative to the *caller* of this function.
108-
* Mapped paths are also accepted, e.g. "~/server/scripts/lua" or "<base>/includes"
108+
* Mapped paths are also accepted, e.g. '~/server/scripts/lua' or '<base>/includes'
109109
*/
110110
addPathMapping(name: string, mappedPath: string): void {
111111
let resolved: string
@@ -275,9 +275,9 @@ export class ScriptLoader {
275275
if (hasInclude) {
276276
/**
277277
* We have something like
278-
* --- \@include "a"
278+
* --- \@include 'a'
279279
* ...
280-
* --- \@include "a"
280+
* --- \@include 'a'
281281
*/
282282
raiseError(
283283
`file "${reference}" already included in "${file.path}"`,
@@ -453,7 +453,7 @@ export class ScriptLoader {
453453

454454
if (luaFiles.length === 0) {
455455
/**
456-
* To prevent unclarified runtime error "updateDelayset is not a function
456+
* To prevent unclarified runtime error 'updateDelayset is not a function'
457457
* @see https://github.com/OptimalBits/bull/issues/920
458458
*/
459459
throw new ScriptLoaderError('No .lua files found!', dir, [])

0 commit comments

Comments
 (0)