Skip to content

Commit

Permalink
fix: set explicit versions for dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dustin-jw committed Jun 3, 2024
1 parent 7cffe69 commit 9e5e3e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/airtable.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'https://deno.land/x/dotenv/load.ts';
import { Airtable } from 'https://deno.land/x/airtable/mod.ts';
import 'https://deno.land/x/dotenv@v3.2.2/load.ts';
import { Airtable } from 'https://deno.land/x/airtable@v1.1.1/mod.ts';

const env = Deno.env.toObject();

Expand Down
2 changes: 1 addition & 1 deletion src/fetch-latest-posts.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { parse } from 'https://deno.land/x/xml/mod.ts';
import { parse } from 'https://deno.land/x/xml@4.0.0/mod.ts';

interface Post {
title: string
Expand Down

0 comments on commit 9e5e3e2

Please sign in to comment.