Skip to content

Commit 1e95738

Browse files
committed
Remove BOM from benchmark files
1 parent 8ac6d36 commit 1e95738

49 files changed

Lines changed: 49 additions & 49 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

templates/keynote-2/bun/bun-server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Pool } from 'pg';
1+
import { Pool } from 'pg';
22
import { drizzle } from 'drizzle-orm/node-postgres';
33
import { pgTable, integer, bigint as pgBigint } from 'drizzle-orm/pg-core';
44
import { eq, inArray, sql } from 'drizzle-orm';

templates/keynote-2/convex-app/convex/accounts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { query } from "./_generated/server";
1+
import { query } from "./_generated/server";
22
import { v } from 'convex/values';
33

44
export const get_account = query(async ({ db }, { id }: { id: number }) => {

templates/keynote-2/convex-app/convex/balances.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// convex/balances.ts
1+
// convex/balances.ts
22
import { ShardedCounter } from '@convex-dev/sharded-counter';
33
import { components } from './_generated/api';
44

templates/keynote-2/convex-app/convex/convex.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { defineApp } from "convex/server";
1+
import { defineApp } from "convex/server";
22
import shardedCounter from "@convex-dev/sharded-counter/convex.config.js";
33

44
const app = defineApp();

templates/keynote-2/convex-app/convex/http.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { httpRouter } from "convex/server";
1+
import { httpRouter } from "convex/server";
22
import { httpAction } from "./_generated/server";
33
import { api } from "./_generated/api";
44
import { seed_range } from './seed';

templates/keynote-2/convex-app/convex/schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { defineSchema, defineTable } from "convex/server";
1+
import { defineSchema, defineTable } from "convex/server";
22
import { v } from "convex/values";
33

44
export default defineSchema({

templates/keynote-2/convex-app/convex/seed.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { v } from "convex/values";
1+
import { v } from "convex/values";
22
import { mutation } from "./_generated/server";
33

44
export const clear_accounts = mutation({

templates/keynote-2/convex-app/convex/transfer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { mutation } from "./_generated/server";
1+
import { mutation } from "./_generated/server";
22
import { v } from "convex/values";
33
import { accountBalances, accountKey } from './balances';
44

templates/keynote-2/src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import 'dotenv/config';
1+
import 'dotenv/config';
22
import { readdir, mkdir, writeFile } from 'node:fs/promises';
33
import { CONNECTORS } from './connectors';
44
import { runOne } from './core/runner';

templates/keynote-2/src/connectors/bun.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { RpcConnector } from '../core/connectors.ts';
1+
import type { RpcConnector } from '../core/connectors.ts';
22

33
export default function bun(
44
url = process.env.BUN_URL || 'http://127.0.0.1:4000',

0 commit comments

Comments
 (0)