Skip to content

Commit

Permalink
build: Add workaround for missing dependency when building in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dhardtke committed Oct 17, 2024
1 parent 40ebb3d commit 5a1e5e3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
// @formatter:off
export * as sqlite from "https://deno.land/x/[email protected]/mod.ts";
export * as Oak from "https://deno.land/x/[email protected]/mod.ts";
// workaround for https://github.com/dhardtke/prandium/actions/runs/11377150775/job/31650809264
import oakBuildWorkaround from "npm:[email protected]";
console.assert(!!oakBuildWorkaround);
export * as needle from "jsr:@needle-di/core";
import { Container } from "jsr:@needle-di/core";
export const container = new Container();
Expand Down

1 comment on commit 5a1e5e3

@deno-deploy
Copy link

@deno-deploy deno-deploy bot commented on 5a1e5e3 Oct 17, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Failed to deploy:

Your deployment uses decorators. The default for 'experimentalDecorators' will be changing to 'false'. In the meantime, please explicitly set the 'experimentalDecorators' compiler option. For more information, see https://deno.com/deploy/changelog#es-decorators-are-enabled-on-deno-deploy-replacing-experimental-ts-decorators

Please sign in to comment.