Skip to content

Commit aa19f78

Browse files
committed
Support all statement type via a catch-all node: StdStmt
1 parent c82b8ef commit aa19f78

31 files changed

+171
-105
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ Here are two quick examples:
7575
FlashQL lets you run SQL queries entirely in memory — with zero setup.
7676

7777
```js
78-
import { FlashClient } from '@linked-db/linked-ql/flashql';
78+
import { FlashQL } from '@linked-db/linked-ql/flashql';
7979

80-
const client = new FlashClient();
80+
const client = new FlashQL();
8181

8282
const result = await client.query(`
8383
CREATE TABLE users (id SERIAL PRIMARY KEY, name TEXT);

dist/flashql.js.map

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

dist/main.js.map

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
"sideEffects": true,
2828
"main": "./src/index.js",
2929
"exports": {
30-
".": "./src/flashql/FlashClient.js",
31-
"./flashql": "./src/flashql/FlashClient.js",
30+
".": "./src/flashql/FlashQL.js",
31+
"./flashql": "./src/flashql/FlashQL.js",
3232
"./postgres": "./src/entry/postgres/PGClient.js",
3333
"./mysql": "./src/entry/mysql/MySQLClient.js",
3434
"./mariadb": "./src/entry/mariadb/MariaDBClient.js",
@@ -37,7 +37,7 @@
3737
"scripts": {
3838
"test": "mocha --extension .test.js --recursive --timeout 5000 --exit",
3939
"lab": "mocha --extension .lab.js --recursive --timeout 5000 --exit",
40-
"build": "esbuild main=src/index.js flashql=src/flashql/FlashClient.js --bundle --minify --sourcemap --outdir=dist",
40+
"build": "esbuild main=src/index.js flashql=src/flashql/FlashQL.js --bundle --minify --sourcemap --outdir=dist",
4141
"preversion": "npm run test && npm run build && git add -A dist",
4242
"postversion": "git push && git push --tags",
4343
"version:next": "npm version prerelease --preid=next",

site/.vitepress/dist/assets/capabilities.md.BztTe5GT.js

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

site/.vitepress/dist/assets/docs.md.CwIgAZwB.js

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

0 commit comments

Comments
 (0)