-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use import_map at runtime (#833)
- Bump to release v0.4.10-rc1 - Use import_map.json at runtime since remote configs aren't supported
- Loading branch information
Showing
47 changed files
with
136 additions
and
2,257 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
{ | ||
// Deno doesn't suport remote workspaces so we must | ||
// use import maps for meta-cli to work from github sources | ||
"importMap": "./import_map.json", | ||
"workspace": { | ||
"members": [ | ||
"./src/typegate/", | ||
"./tests", | ||
"./tools", | ||
"./src/typegraph/deno", | ||
"./examples/" | ||
"./src/typegate/", // need special lint rules | ||
"./tests", // needs special lint rules | ||
"./src/typegraph/deno", // needed for publishing | ||
"./examples/" // needed for published_test | ||
] | ||
}, | ||
"compilerOptions": { | ||
|
@@ -37,28 +39,5 @@ | |
], | ||
"exclude": [] | ||
} | ||
}, | ||
"imports": { | ||
"@david/dax": "jsr:@david/[email protected]", | ||
"@std/archive": "jsr:@std/archive@^0.225.0", | ||
"@std/assert": "jsr:@std/assert@^1.0.2", | ||
"@std/cli": "jsr:@std/cli@^1.0.4", | ||
"@std/collections": "jsr:@std/collections@^1.0.5", | ||
"@std/encoding": "jsr:@std/encoding@^1.0.2", | ||
"@std/fs": "jsr:@std/fs@^1.0.1", | ||
"@std/http": "jsr:@std/http@^1.0.3", | ||
"@std/io": "jsr:@std/io@^0.224.5", | ||
"@std/path": "jsr:@std/path@^1.0.2", | ||
"@std/streams": "jsr:@std/streams@^1.0.2", | ||
"@std/uuid": "jsr:@std/uuid@^1.0.1", | ||
"aws-sdk/client-s3": "https://esm.sh/@aws-sdk/[email protected]?pin=v131", | ||
"aws-sdk/s3-request-presigner": "https://esm.sh/@aws-sdk/[email protected]?pin=v131", | ||
"dispose": "https://deno.land/x/[email protected]/mod.ts", | ||
"graphql": "npm:[email protected]", | ||
"jwt": "https://deno.land/x/[email protected]/mod.ts", | ||
"monads": "https://deno.land/x/[email protected]/mod.ts", | ||
"native": "./src/typegate/engine/bindings.ts", | ||
"redis": "https://deno.land/x/[email protected]/mod.ts", | ||
"zod": "https://deno.land/x/[email protected]/mod.ts" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.