Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"deno.enable": true,
"deno.lint": true,
"deno.unstable": true,
"deno.config": "./deno.json",
"editor.formatOnSave": true,
"editor.defaultFormatter": "denoland.vscode-deno"
"[typescript]": {
"editor.defaultFormatter": "denoland.vscode-deno"
}
}
4 changes: 2 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
"useTabs": true,
"lineWidth": 80,
"indentWidth": 4,
"semiColons": false,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve",
"include": ["src/"],
"exclude": ["src/testdata/", "data/fixtures/**/*.ts"]
"exclude": ["*.md"]
},
"tasks": {
"test": "deno test --allow-net --allow-read --allow-write --allow-env --allow-run"
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.

2 changes: 1 addition & 1 deletion src/services/downloader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export class Downloader {

private async setExecutable(binaryPath: string) {
const allowExecOctal = 0o755
await osUtils.chomod(binaryPath, allowExecOctal)
await osUtils.chmod(binaryPath, allowExecOctal)
}

private async downloadAndInstallStackQL({
Expand Down
2 changes: 1 addition & 1 deletion src/services/server.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Client } from 'https://deno.land/x/postgres/mod.ts'
import { Client } from 'https://deno.land/x/postgres@v0.17.0/mod.ts'

export class Server {
private client: Client | null = null
Expand Down
Loading