-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(cleanup): improve dep paths (#7)
- Loading branch information
1 parent
c6b3bc0
commit bcf2db8
Showing
4 changed files
with
12 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,12 @@ | |
"std/": "https://deno.land/[email protected]/" | ||
}, | ||
"tasks": { | ||
"start": "deno run -A --unstable --watch=src src/index.ts", | ||
"run": "deno run -A --unstable src/index.ts", | ||
"compile-win": "deno compile --unstable -A --target x86_64-pc-windows-msvc --output build/runreal-win-x64 src/index.ts", | ||
"compile-linux": "deno compile --unstable -A --target x86_64-unknown-linux-gnu --output build/runreal-linux-x64 src/index.ts", | ||
"compile-macos": "deno compile --unstable -A --target aarch64-apple-darwin --output build/runreal-macos-arm src/index.ts", | ||
"generate-schema": "deno run -A --unstable src/generate-schema.ts" | ||
"start": "deno run -A --watch=src src/index.ts", | ||
"run": "deno run -A src/index.ts", | ||
"compile-win": "deno compile -A --target x86_64-pc-windows-msvc --output build/runreal-win-x64 src/index.ts", | ||
"compile-linux": "deno compile -A --target x86_64-unknown-linux-gnu --output build/runreal-linux-x64 src/index.ts", | ||
"compile-macos": "deno compile -A --target aarch64-apple-darwin --output build/runreal-macos-arm src/index.ts", | ||
"generate-schema": "deno run -A src/generate-schema.ts" | ||
}, | ||
"lint": { | ||
"include": ["src/"], | ||
|
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ export * as path from 'std/path/mod.ts' | |
export { mergeReadableStreams } from 'std/streams/merge_readable_streams.ts' | ||
export * as fmt from 'std/fmt/colors.ts' | ||
export * as dotenv from 'std/dotenv/mod.ts' | ||
export { parse } from 'std/jsonc/parse.ts' | ||
|
||
export { xml2js } from 'https://deno.land/x/[email protected]/mod.ts' | ||
export { Command, EnumType, ValidationError } from 'https://deno.land/x/[email protected]/command/mod.ts' | ||
|
@@ -13,6 +14,5 @@ const ulid = monotonicFactory() | |
export { ulid } | ||
|
||
export { z } from 'https://deno.land/x/zod/mod.ts' | ||
export { parse } from 'https://deno.land/[email protected]/jsonc/parse.ts' | ||
export { globber } from 'https://deno.land/x/[email protected]/mod.ts' | ||
export { zodToJsonSchema } from 'npm:zod-to-json-schema' |