File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
packages/bun-queue/src/commands Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 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 }}
Original file line number Diff line number Diff 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 , [ ] )
You can’t perform that action at this time.
0 commit comments