Skip to content

Commit

Permalink
add index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Skyler Lewis committed Sep 11, 2023
1 parent 3b4caf7 commit 764d36a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
8 changes: 0 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,3 @@ To install dependencies:
```bash
bun install
```

To run:

```bash
bun run index.ts
```

This project was created using `bun init` in bun v1.0.0. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "squeakql",
"module": "index.ts",
"version": "0.0.1",
"module": "./build/index.js",
"type": "module",
"devDependencies": {
"bun-types": "latest"
Expand Down
5 changes: 5 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export * from "./sql";
export * from "./sqlQuery";
export * from "./dbUtils";
export * from "./sqlUtils";
export * from "./queryBuilder";

0 comments on commit 764d36a

Please sign in to comment.