Skip to content

Commit bcf2db8

Browse files
authored
chore(cleanup): improve dep paths (#7)
1 parent c6b3bc0 commit bcf2db8

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

deno.jsonc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
"std/": "https://deno.land/std@0.204.0/"
66
},
77
"tasks": {
8-
"start": "deno run -A --unstable --watch=src src/index.ts",
9-
"run": "deno run -A --unstable src/index.ts",
10-
"compile-win": "deno compile --unstable -A --target x86_64-pc-windows-msvc --output build/runreal-win-x64 src/index.ts",
11-
"compile-linux": "deno compile --unstable -A --target x86_64-unknown-linux-gnu --output build/runreal-linux-x64 src/index.ts",
12-
"compile-macos": "deno compile --unstable -A --target aarch64-apple-darwin --output build/runreal-macos-arm src/index.ts",
13-
"generate-schema": "deno run -A --unstable src/generate-schema.ts"
8+
"start": "deno run -A --watch=src src/index.ts",
9+
"run": "deno run -A src/index.ts",
10+
"compile-win": "deno compile -A --target x86_64-pc-windows-msvc --output build/runreal-win-x64 src/index.ts",
11+
"compile-linux": "deno compile -A --target x86_64-unknown-linux-gnu --output build/runreal-linux-x64 src/index.ts",
12+
"compile-macos": "deno compile -A --target aarch64-apple-darwin --output build/runreal-macos-arm src/index.ts",
13+
"generate-schema": "deno run -A src/generate-schema.ts"
1414
},
1515
"lint": {
1616
"include": ["src/"],

deno.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

schema.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
{
22
"type": "object",
33
"properties": {
4+
"$schema": {
5+
"type": "string",
6+
"description": "Runreal JSON-Schema spec version"
7+
},
48
"engine": {
59
"type": "object",
610
"properties": {

src/deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ export * as path from 'std/path/mod.ts'
22
export { mergeReadableStreams } from 'std/streams/merge_readable_streams.ts'
33
export * as fmt from 'std/fmt/colors.ts'
44
export * as dotenv from 'std/dotenv/mod.ts'
5+
export { parse } from 'std/jsonc/parse.ts'
56

67
export { xml2js } from 'https://deno.land/x/xml2js@1.0.0/mod.ts'
78
export { Command, EnumType, ValidationError } from 'https://deno.land/x/cliffy@v1.0.0-rc.3/command/mod.ts'
@@ -13,6 +14,5 @@ const ulid = monotonicFactory()
1314
export { ulid }
1415

1516
export { z } from 'https://deno.land/x/zod/mod.ts'
16-
export { parse } from 'https://deno.land/std@0.221.0/jsonc/parse.ts'
1717
export { globber } from 'https://deno.land/x/globber@0.1.0/mod.ts'
1818
export { zodToJsonSchema } from 'npm:zod-to-json-schema'

0 commit comments

Comments
 (0)