Skip to content

Commit

Permalink
refactor: rename devDeps.ts to dev_deps.ts to align with deno convention
Browse files Browse the repository at this point in the history
  • Loading branch information
brc-dd committed Jul 15, 2024
1 parent 4755341 commit 367a061
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion scripts/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import {
Select as _Select,
type SelectOptions,
Spinner,
} from '../devDeps.ts'
} from '../dev_deps.ts'

const SEMVER_INCREMENTS: ReleaseType[] = ['patch', 'minor', 'major', 'prepatch', 'preminor', 'premajor', 'prerelease']

Expand Down
2 changes: 1 addition & 1 deletion scripts/update.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { $, expandGlob, parseArgs, parseDependency, relative, resolveLatestVersion, stringify } from '../devDeps.ts'
import { $, expandGlob, parseArgs, parseDependency, relative, resolveLatestVersion, stringify } from '../dev_deps.ts'

const args = parseArgs(Deno.args, { collect: ['x'] })
const excludes = (args.x ?? []) as string[]
Expand Down
2 changes: 1 addition & 1 deletion tests/router.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* https://github.com/privatenumber/fs-fixture/blob/master/LICENSE
*/

import { assertEquals, dirname, getAvailablePort } from '../devDeps.ts'
import { assertEquals, dirname, getAvailablePort } from '../dev_deps.ts'
import { createRouter } from '../src/router.ts'

class TempDir {
Expand Down

0 comments on commit 367a061

Please sign in to comment.