Skip to content

Commit

Permalink
chore(cleanup): improve dep paths (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenlacy authored Apr 4, 2024
1 parent c6b3bc0 commit bcf2db8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
12 changes: 6 additions & 6 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -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/"],
Expand Down
1 change: 1 addition & 0 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"type": "object",
"properties": {
"$schema": {
"type": "string",
"description": "Runreal JSON-Schema spec version"
},
"engine": {
"type": "object",
"properties": {
Expand Down
2 changes: 1 addition & 1 deletion src/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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'

0 comments on commit bcf2db8

Please sign in to comment.