Skip to content

Commit

Permalink
Rename //multipart/multipart.ts to //mime/multipart.ts (denoland/std#420
Browse files Browse the repository at this point in the history
  • Loading branch information
zekth authored and ry committed May 21, 2019
1 parent 915b4f5 commit b9ce3a6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion multipart/multipart.ts → mime/multipart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ type Closer = Deno.Closer;
type Reader = Deno.Reader;
type ReadResult = Deno.ReadResult;
type Writer = Deno.Writer;
import { FormFile } from "./formfile.ts";
import { FormFile } from "../multipart/formfile.ts";
import {
bytesFindIndex,
bytesFindLastIndex,
Expand Down
2 changes: 1 addition & 1 deletion multipart/multipart_test.ts → mime/multipart_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
scanUntilBoundary
} from "./multipart.ts";
import * as path from "../fs/path.ts";
import { FormFile, isFormFile } from "./formfile.ts";
import { FormFile, isFormFile } from "../multipart/formfile.ts";
import { StringWriter } from "../io/writers.ts";

const e = new TextEncoder();
Expand Down
2 changes: 2 additions & 0 deletions mime/test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import "./multipart_test.ts";
1 change: 0 additions & 1 deletion multipart/test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import "./formfile_test.ts";
import "./multipart_test.ts";
1 change: 1 addition & 0 deletions test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import "./http/test.ts";
import "./io/test.ts";
import "./log/test.ts";
import "./media_types/test.ts";
import "./mime/test.ts";
import "./multipart/test.ts";
import "./prettier/test.ts";
import "./strings/test.ts";
Expand Down

0 comments on commit b9ce3a6

Please sign in to comment.