Updates
This commit is contained in:
parent
59e72942b8
commit
72f361b06b
2
dist/commands/index.d.ts
vendored
2
dist/commands/index.d.ts
vendored
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env bun
|
||||||
/**
|
/**
|
||||||
* # Declare Global Variables
|
* # Declare Global Variables
|
||||||
*/
|
*/
|
||||||
|
|||||||
2
dist/commands/index.js
vendored
2
dist/commands/index.js
vendored
@ -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";
|
||||||
|
|||||||
2
dist/lib/sqlite/db-schema-manager.d.ts
vendored
2
dist/lib/sqlite/db-schema-manager.d.ts
vendored
@ -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;
|
||||||
|
|||||||
2
dist/lib/sqlite/db-schema-manager.js
vendored
2
dist/lib/sqlite/db-schema-manager.js
vendored
@ -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,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";
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user