Skip to content

Commit

Permalink
updated deno std dependency to 0.50.0
Browse files Browse the repository at this point in the history
  • Loading branch information
patlehmann1 authored and patlehmann1 committed May 9, 2020
1 parent 8248bb3 commit e3c7bbd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions dependencies.ts
@@ -1,8 +1,8 @@
import React from 'https://dev.jspm.io/react@16.12.0';
import ReactDOMServer from 'https://dev.jspm.io/react-dom@16.12.0/server';
import * as cookie from 'https://deno.land/std@v0.41.0/http/cookie.ts';
import * as http from 'https://deno.land/std@v0.41.0/http/server.ts';
import { Status as status, STATUS_TEXT as statusText } from 'https://deno.land/std@v0.41.0/http/http_status.ts';
import * as cookie from 'https://deno.land/std@v0.50.0/http/cookie.ts';
import * as http from 'https://deno.land/std@v0.50.0/http/server.ts';
import { Status as status, STATUS_TEXT as statusText } from 'https://deno.land/std@v0.50.0/http/http_status.ts';

export {
React,
Expand Down
2 changes: 1 addition & 1 deletion dev-dependencies.ts
Expand Up @@ -2,7 +2,7 @@ import {
assert,
assertEquals,
assertStrictEq
} from 'https://deno.land/std@v0.41.0/testing/asserts.ts';
} from 'https://deno.land/std@v0.50.0/testing/asserts.ts';

export {
assert,
Expand Down
2 changes: 1 addition & 1 deletion example/simple-server/dev-dependencies.ts
@@ -1,4 +1,4 @@
import { assertEquals, assertStrictEq } from 'https://deno.land/std@v0.41.0/testing/asserts.ts';
import { assertEquals, assertStrictEq } from 'https://deno.land/std@v0.50.0/testing/asserts.ts';

export {
assertEquals,
Expand Down

0 comments on commit e3c7bbd

Please sign in to comment.