Skip to content

Commit

Permalink
Migrate to std URLs without v prefix.
Browse files Browse the repository at this point in the history
  • Loading branch information
sholladay committed Sep 7, 2020
1 parent 64ef113 commit bd68b21
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions dependencies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
import React from 'https://jspm.dev/[email protected]';
// @deno-types="https://raw.githubusercontent.com/soremwar/deno_types/b5a146610e2c97c1612371fcf610b541f950ee73/react-dom/v16.13.1/server.d.ts"
import ReactDOMServer from 'https://jspm.dev/[email protected]/server';
import * as cookie from 'https://deno.land/std@v0.64.0/http/cookie.ts';
import * as http from 'https://deno.land/std@v0.64.0/http/server.ts';
import { Status as status, STATUS_TEXT as statusText } from 'https://deno.land/std@v0.64.0/http/http_status.ts';
import * as cookie from 'https://deno.land/std@0.64.0/http/cookie.ts';
import * as http from 'https://deno.land/std@0.64.0/http/server.ts';
import { Status as status, STATUS_TEXT as statusText } from 'https://deno.land/std@0.64.0/http/http_status.ts';
import * as mime from 'https://jspm.dev/[email protected]';
import * as path from 'https://deno.land/std@v0.64.0/path/mod.ts';
import * as path from 'https://deno.land/std@0.64.0/path/mod.ts';

export {
React,
Expand Down
2 changes: 1 addition & 1 deletion dev-dependencies.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from 'https://deno.land/std@v0.64.0/testing/asserts.ts';
export * from 'https://deno.land/std@0.64.0/testing/asserts.ts';
2 changes: 1 addition & 1 deletion example/react-on-server/dev-dependencies.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from 'https://deno.land/std@v0.64.0/testing/asserts.ts';
export * from 'https://deno.land/std@0.64.0/testing/asserts.ts';
2 changes: 1 addition & 1 deletion example/simple-server/dev-dependencies.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from 'https://deno.land/std@v0.64.0/testing/asserts.ts';
export * from 'https://deno.land/std@0.64.0/testing/asserts.ts';

0 comments on commit bd68b21

Please sign in to comment.