Skip to content

Commit

Permalink
fixup! chore(insights): correct DB migration script
Browse files Browse the repository at this point in the history
  • Loading branch information
mhevery committed Aug 25, 2023
1 parent 588f3e0 commit f809d31
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 55 deletions.
2 changes: 1 addition & 1 deletion packages/insights/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"density-clustering": "^1.3.0",
"dotenv": "^16.3.1",
"drizzle-kit": "^0.19.13",
"drizzle-orm": "0.28.5",
"drizzle-orm": "0.28.3",
"install": "^0.13.0"
},
"devDependencies": {
Expand Down
24 changes: 12 additions & 12 deletions packages/insights/src/routes.gen.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,53 +49,53 @@ export interface AppRouteParamsFunction {
(route: "/", params?: {}): string;
(
route: "/api/v1/[publicApiKey]/bundles/",
params: { publicApiKey: string }
params: { publicApiKey: string },
): string;
(
route: "/api/v1/[publicApiKey]/post/",
params: { publicApiKey: string }
params: { publicApiKey: string },
): string;
(
route: "/api/v1/[publicApiKey]/post/error/",
params: { publicApiKey: string }
params: { publicApiKey: string },
): string;
(
route: "/api/v1/[publicApiKey]/post/manifest/",
params: { publicApiKey: string }
params: { publicApiKey: string },
): string;
(route: "/app/", params?: {}): string;
(route: "/app/[publicApiKey]/", params: { publicApiKey: string }): string;
(
route: "/app/[publicApiKey]/edit/",
params: { publicApiKey: string }
params: { publicApiKey: string },
): string;
(
route: "/app/[publicApiKey]/errors/",
params: { publicApiKey: string }
params: { publicApiKey: string },
): string;
(
route: "/app/[publicApiKey]/manifests/",
params: { publicApiKey: string }
params: { publicApiKey: string },
): string;
(
route: "/app/[publicApiKey]/symbols/",
params: { publicApiKey: string }
params: { publicApiKey: string },
): string;
(
route: "/app/[publicApiKey]/symbols/bundles/",
params: { publicApiKey: string }
params: { publicApiKey: string },
): string;
(
route: "/app/[publicApiKey]/symbols/edge/",
params: { publicApiKey: string }
params: { publicApiKey: string },
): string;
(
route: "/app/[publicApiKey]/symbols/outgoing/",
params: { publicApiKey: string }
params: { publicApiKey: string },
): string;
(
route: "/app/[publicApiKey]/symbols/slow/",
params: { publicApiKey: string }
params: { publicApiKey: string },
): string;
(route: "/app/add/", params?: {}): string;
(route: "/test/", params?: {}): string;
Expand Down
5 changes: 0 additions & 5 deletions packages/insights/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,5 @@ export default defineConfig(async () => {
optimizeDeps: {
include: ['@auth/core'],
},
build: {
rollupOptions: {
external: ['@libsql/client'],
},
},
};
});
74 changes: 37 additions & 37 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f809d31

Please sign in to comment.