Skip to content

Commit

Permalink
Merge pull request #1910 from nellh/import-map-disable
Browse files Browse the repository at this point in the history
schema: Disable import map for Deno validator
  • Loading branch information
rwblair authored Mar 7, 2024
2 parents 08ca1ce + cfc4664 commit 7033929
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 10 deletions.
3 changes: 0 additions & 3 deletions bids-validator/deno.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"imports": {
"std/": "https://deno.land/std@0.217.0/"
},
"tasks": {
"test": "deno test -A src/tests/"
},
Expand Down
2 changes: 1 addition & 1 deletion bids-validator/src/deps/asserts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ export {
assertObjectMatch,
assertExists,
assertRejects,
} from 'std/testing/asserts.ts'
} from 'https://deno.land/std@0.217.0/testing/asserts.ts'
2 changes: 1 addition & 1 deletion bids-validator/src/deps/fmt.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * as colors from 'std/fmt/colors.ts'
export * as colors from 'https://deno.land/std@0.217.0/fmt/colors.ts'
2 changes: 1 addition & 1 deletion bids-validator/src/deps/fs.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { walk } from 'std/fs/walk.ts'
export { walk } from 'https://deno.land/std@0.217.0/fs/walk.ts'
4 changes: 2 additions & 2 deletions bids-validator/src/deps/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ export {
LogLevels,
setup,
warn,
} from "std/log/mod.ts"
export type { LevelName } from "std/log/mod.ts"
} from "https://deno.land/std@0.217.0/log/mod.ts"
export type { LevelName } from "https://deno.land/std@0.217.0/log/mod.ts"
2 changes: 1 addition & 1 deletion bids-validator/src/deps/path.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ export {
fromFileUrl,
parse,
SEPARATOR,
} from 'std/path/mod.ts'
} from 'https://deno.land/std@0.217.0/path/mod.ts'
2 changes: 1 addition & 1 deletion bids-validator/src/deps/stream.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export {
readAll,
readerFromStreamReader,
} from 'std/io/mod.ts'
} from 'https://deno.land/std@0.217.0/io/mod.ts'

0 comments on commit 7033929

Please sign in to comment.