Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
drashbot committed Apr 12, 2024
1 parent 65dee24 commit f7bf96e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .docker/drash.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN apt-get update -y \
&& apt-get install -y --no-install-recommends npm \
&& npm install -g npm@latest

RUN curl -fsSL https://deno.land/x/install/install.sh | DENO_INSTALL=/usr/local sh -s v1.22.1 \
RUN curl -fsSL https://deno.land/x/install/install.sh | DENO_INSTALL=/usr/local sh -s v1.41.0 \
&& export DENO_INSTALL="/root/.local" \
&& export PATH="$DENO_INSTALL/bin:$PATH" \
&& deno install --unstable --allow-net=realworld_postgres:5432,deno.land --no-check --allow-env=PGDATABASE,PGHOST,PGPORT,PGUSER,PGPASSWORD,PGAPPNAME --allow-read=. --allow-write=nessie.config.ts,db --name nessie https://deno.land/x/nessie@2.0.5/cli.ts
Expand Down
10 changes: 5 additions & 5 deletions src/deps.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
export * as Drash from "https://deno.land/x/drash@v2.6.0/mod.ts";
export * as bcrypt from "https://deno.land/x/bcrypt@v0.3.0/mod.ts";
export { TengineService } from "https://deno.land/x/drash@v2.6.0/src/services/tengine/tengine.ts";
export * as Drash from "https://deno.land/x/drash@v3.0.0-beta.2/mod.ts";
export * as bcrypt from "https://deno.land/x/bcrypt@v0.4.1/mod.ts";
export { TengineService } from "https://deno.land/x/drash@v3.0.0-beta.2/src/services/tengine/tengine.ts";
export {
AbstractMigration,
AbstractSeed,
ClientPostgreSQL,
} from "https://deno.land/x/nessie@2.0.6/mod.ts";
export type { Info } from "https://deno.land/x/nessie@2.0.6/mod.ts";
} from "https://deno.land/x/nessie@2.0.11/mod.ts";
export type { Info } from "https://deno.land/x/nessie@2.0.11/mod.ts";
export { Model, QueryBuilder } from "https://deno.land/x/vital@v1.1.1/mod.ts";
4 changes: 2 additions & 2 deletions src/tests/deps.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { assertEquals } from "https://deno.land/std@v0.141.0/testing/asserts.ts";
export { State } from "https://deno.land/x/nessie@2.0.6/cli/state.ts";
export { assertEquals } from "https://deno.land/std@v0.222.1/testing/asserts.ts";
export { State } from "https://deno.land/x/nessie@2.0.11/cli/state.ts";

0 comments on commit f7bf96e

Please sign in to comment.