Skip to content

Commit 40be584

Browse files
Merge pull request #18 from stackql/dev/execute-and-statements
Dev/execute and statements
2 parents de7de3c + bf9e42a commit 40be584

File tree

10 files changed

+494
-274
lines changed

10 files changed

+494
-274
lines changed

.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"deno.enable": true,
33
"deno.lint": true,
44
"deno.unstable": true,
5+
"deno.config": "./deno.json",
56
"editor.formatOnSave": true,
6-
"editor.defaultFormatter": "denoland.vscode-deno"
7+
"[typescript]": {
8+
"editor.defaultFormatter": "denoland.vscode-deno"
9+
}
710
}

deno.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
"useTabs": true,
1313
"lineWidth": 80,
1414
"indentWidth": 4,
15-
"semiColons": false,
15+
"semiColons": true,
1616
"singleQuote": true,
1717
"proseWrap": "preserve",
1818
"include": ["src/"],
19-
"exclude": ["src/testdata/", "data/fixtures/**/*.ts"]
19+
"exclude": ["*.md"]
2020
},
2121
"tasks": {
2222
"test": "deno test --allow-net --allow-read --allow-write --allow-env --allow-run"

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.

src/services/downloader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export class Downloader {
125125

126126
private async setExecutable(binaryPath: string) {
127127
const allowExecOctal = 0o755
128-
await osUtils.chomod(binaryPath, allowExecOctal)
128+
await osUtils.chmod(binaryPath, allowExecOctal)
129129
}
130130

131131
private async downloadAndInstallStackQL({

src/services/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Client } from 'https://deno.land/x/postgres/mod.ts'
1+
import { Client } from 'https://deno.land/x/postgres@v0.17.0/mod.ts'
22

33
export class Server {
44
private client: Client | null = null

0 commit comments

Comments
 (0)