Skip to content

Commit 5794891

Browse files
committed
should work on deno 1.31
1 parent c9627d8 commit 5794891

3 files changed

Lines changed: 3 additions & 80 deletions

File tree

deno.lock

Lines changed: 0 additions & 77 deletions
This file was deleted.

src/json.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { decode, encode } from 'https://deno.land/std@0.176.0/encoding/base64.ts';
1+
import { decode, encode } from 'https://deno.land/std@0.178.0/encoding/base64.ts';
22

33
const serializableClasses: {
44
classRef: new () => any;

src/orm.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { Database as SqliteDatabase, DatabaseOpenOptions } from 'https://deno.land/x/sqlite3@0.7.3/mod.ts';
1+
import { Database as SqliteDatabase, DatabaseOpenOptions } from 'https://deno.land/x/sqlite3@0.8.1/mod.ts';
22
import { buildAggregateQuery, buildAlterQuery, buildCountWhereQuery, buildDeleteQuery, buildInsertQuery, buildModelFromData, buildSelectQuery, buildTableQuery, buildUpdateQuery, isProvidedTypeValid } from './builder.ts';
33
import { DBInvalidData, DBInvalidTable, DBModelNotFound, DBNotFound } from './errors.ts';
44
import { dejsonify, jsonify } from './json.ts';
55
import { prettyPrintDiff } from './util.ts';
6-
import { basename, join } from 'https://deno.land/std@0.176.0/path/mod.ts';
6+
import { basename, join } from 'https://deno.land/std@0.178.0/path/mod.ts';
77

88
interface OrmOptions {
99
/**

0 commit comments

Comments
 (0)