Updates
This commit is contained in:
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env bun
|
||||||
/**
|
/**
|
||||||
* # Declare Global Variables
|
* # Declare Global Variables
|
||||||
*/
|
*/
|
||||||
|
|||||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env bun
|
||||||
import { program } from "commander";
|
import { program } from "commander";
|
||||||
import schema from "./schema";
|
import schema from "./schema";
|
||||||
import typedef from "./typedef";
|
import typedef from "./typedef";
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env bun
|
||||||
import type { BUN_SQLITE_DatabaseSchemaType } from "../../types";
|
import type { BUN_SQLITE_DatabaseSchemaType } from "../../types";
|
||||||
declare class SQLiteSchemaManager {
|
declare class SQLiteSchemaManager {
|
||||||
private db;
|
private db;
|
||||||
|
|||||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env bun
|
||||||
import { Database } from "bun:sqlite";
|
import { Database } from "bun:sqlite";
|
||||||
import _ from "lodash";
|
import _ from "lodash";
|
||||||
import DbClient from ".";
|
import DbClient from ".";
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@moduletrace/bun-sqlite",
|
"name": "@moduletrace/bun-sqlite",
|
||||||
"version": "1.0.6",
|
"version": "1.0.7",
|
||||||
"description": "SQLite manager for Bun",
|
"description": "SQLite manager for Bun",
|
||||||
"author": "Benjamin Toby",
|
"author": "Benjamin Toby",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env bun
|
||||||
|
|
||||||
import { program } from "commander";
|
import { program } from "commander";
|
||||||
import schema from "./schema";
|
import schema from "./schema";
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env bun
|
||||||
|
|
||||||
import { Database } from "bun:sqlite";
|
import { Database } from "bun:sqlite";
|
||||||
import _ from "lodash";
|
import _ from "lodash";
|
||||||
|
|||||||
Reference in New Issue
Block a user