summaryrefslogtreecommitdiff
path: root/std/fs
diff options
context:
space:
mode:
Diffstat (limited to 'std/fs')
-rw-r--r--std/fs/_util.ts2
-rw-r--r--std/fs/copy.ts2
-rw-r--r--std/fs/copy_test.ts2
-rw-r--r--std/fs/empty_dir.ts2
-rw-r--r--std/fs/empty_dir_test.ts2
-rw-r--r--std/fs/ensure_dir.ts2
-rw-r--r--std/fs/ensure_dir_test.ts2
-rw-r--r--std/fs/ensure_file.ts2
-rw-r--r--std/fs/ensure_file_test.ts2
-rw-r--r--std/fs/ensure_link.ts2
-rw-r--r--std/fs/ensure_link_test.ts2
-rw-r--r--std/fs/ensure_symlink.ts2
-rw-r--r--std/fs/ensure_symlink_test.ts2
-rw-r--r--std/fs/eol.ts2
-rw-r--r--std/fs/eol_test.ts2
-rw-r--r--std/fs/exists.ts2
-rw-r--r--std/fs/exists_test.ts2
-rw-r--r--std/fs/expand_glob.ts2
-rw-r--r--std/fs/expand_glob_test.ts2
-rw-r--r--std/fs/mod.ts2
-rw-r--r--std/fs/move.ts2
-rw-r--r--std/fs/move_test.ts2
-rw-r--r--std/fs/test.ts2
-rw-r--r--std/fs/walk_test.ts2
24 files changed, 24 insertions, 24 deletions
diff --git a/std/fs/_util.ts b/std/fs/_util.ts
index 95e9f0894..a9445a394 100644
--- a/std/fs/_util.ts
+++ b/std/fs/_util.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import * as path from "../path/mod.ts";
/**
diff --git a/std/fs/copy.ts b/std/fs/copy.ts
index 1bb0a6aff..05ea6056b 100644
--- a/std/fs/copy.ts
+++ b/std/fs/copy.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import * as path from "../path/mod.ts";
import { ensureDir, ensureDirSync } from "./ensure_dir.ts";
import { getFileInfoType, isSubdir } from "./_util.ts";
diff --git a/std/fs/copy_test.ts b/std/fs/copy_test.ts
index 859239d10..32933b8e0 100644
--- a/std/fs/copy_test.ts
+++ b/std/fs/copy_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import {
assert,
assertEquals,
diff --git a/std/fs/empty_dir.ts b/std/fs/empty_dir.ts
index dea09b5c0..df73ad6b7 100644
--- a/std/fs/empty_dir.ts
+++ b/std/fs/empty_dir.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { join } from "../path/mod.ts";
/**
diff --git a/std/fs/empty_dir_test.ts b/std/fs/empty_dir_test.ts
index aaee1b9d9..a78f221eb 100644
--- a/std/fs/empty_dir_test.ts
+++ b/std/fs/empty_dir_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import {
assert,
assertEquals,
diff --git a/std/fs/ensure_dir.ts b/std/fs/ensure_dir.ts
index f5b5cd309..20259a6f7 100644
--- a/std/fs/ensure_dir.ts
+++ b/std/fs/ensure_dir.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { getFileInfoType } from "./_util.ts";
/**
diff --git a/std/fs/ensure_dir_test.ts b/std/fs/ensure_dir_test.ts
index 29a7913b1..ad8b75a9f 100644
--- a/std/fs/ensure_dir_test.ts
+++ b/std/fs/ensure_dir_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { assertThrows, assertThrowsAsync } from "../testing/asserts.ts";
import * as path from "../path/mod.ts";
import { ensureDir, ensureDirSync } from "./ensure_dir.ts";
diff --git a/std/fs/ensure_file.ts b/std/fs/ensure_file.ts
index 41565795c..f70732c37 100644
--- a/std/fs/ensure_file.ts
+++ b/std/fs/ensure_file.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import * as path from "../path/mod.ts";
import { ensureDir, ensureDirSync } from "./ensure_dir.ts";
import { getFileInfoType } from "./_util.ts";
diff --git a/std/fs/ensure_file_test.ts b/std/fs/ensure_file_test.ts
index ee21e7b88..e10603426 100644
--- a/std/fs/ensure_file_test.ts
+++ b/std/fs/ensure_file_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { assertThrows, assertThrowsAsync } from "../testing/asserts.ts";
import * as path from "../path/mod.ts";
import { ensureFile, ensureFileSync } from "./ensure_file.ts";
diff --git a/std/fs/ensure_link.ts b/std/fs/ensure_link.ts
index ea8501b03..56d740ef0 100644
--- a/std/fs/ensure_link.ts
+++ b/std/fs/ensure_link.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import * as path from "../path/mod.ts";
import { ensureDir, ensureDirSync } from "./ensure_dir.ts";
import { exists, existsSync } from "./exists.ts";
diff --git a/std/fs/ensure_link_test.ts b/std/fs/ensure_link_test.ts
index 2b4cfc66c..d45b058ca 100644
--- a/std/fs/ensure_link_test.ts
+++ b/std/fs/ensure_link_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
// TODO(axetroy): Add test for Windows once symlink is implemented for Windows.
import {
assertEquals,
diff --git a/std/fs/ensure_symlink.ts b/std/fs/ensure_symlink.ts
index b57abe907..63ef6f162 100644
--- a/std/fs/ensure_symlink.ts
+++ b/std/fs/ensure_symlink.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import * as path from "../path/mod.ts";
import { ensureDir, ensureDirSync } from "./ensure_dir.ts";
import { exists, existsSync } from "./exists.ts";
diff --git a/std/fs/ensure_symlink_test.ts b/std/fs/ensure_symlink_test.ts
index 4461f8f87..64adfa812 100644
--- a/std/fs/ensure_symlink_test.ts
+++ b/std/fs/ensure_symlink_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
// TODO(axetroy): Add test for Windows once symlink is implemented for Windows.
import {
assertEquals,
diff --git a/std/fs/eol.ts b/std/fs/eol.ts
index 5ea554c6e..25797bd71 100644
--- a/std/fs/eol.ts
+++ b/std/fs/eol.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
/** EndOfLine character enum */
export enum EOL {
diff --git a/std/fs/eol_test.ts b/std/fs/eol_test.ts
index dd427d219..23e02f4a3 100644
--- a/std/fs/eol_test.ts
+++ b/std/fs/eol_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "../testing/asserts.ts";
import { detect, EOL, format } from "./eol.ts";
diff --git a/std/fs/exists.ts b/std/fs/exists.ts
index a79455b2d..e98bbcc70 100644
--- a/std/fs/exists.ts
+++ b/std/fs/exists.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
/**
* Test whether or not the given path exists by checking with the file system
*/
diff --git a/std/fs/exists_test.ts b/std/fs/exists_test.ts
index a3243aec9..b3004ec0e 100644
--- a/std/fs/exists_test.ts
+++ b/std/fs/exists_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { assertEquals, assertStringIncludes } from "../testing/asserts.ts";
import * as path from "../path/mod.ts";
import { exists, existsSync } from "./exists.ts";
diff --git a/std/fs/expand_glob.ts b/std/fs/expand_glob.ts
index 390df4932..358206558 100644
--- a/std/fs/expand_glob.ts
+++ b/std/fs/expand_glob.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import {
GlobOptions,
globToRegExp,
diff --git a/std/fs/expand_glob_test.ts b/std/fs/expand_glob_test.ts
index 307cf0101..da9e89e6b 100644
--- a/std/fs/expand_glob_test.ts
+++ b/std/fs/expand_glob_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { decode } from "../encoding/utf8.ts";
import {
assert,
diff --git a/std/fs/mod.ts b/std/fs/mod.ts
index 9d361494f..98dd3daa5 100644
--- a/std/fs/mod.ts
+++ b/std/fs/mod.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
export * from "./empty_dir.ts";
export * from "./ensure_dir.ts";
export * from "./ensure_file.ts";
diff --git a/std/fs/move.ts b/std/fs/move.ts
index 8b5a6caa2..2e34e7387 100644
--- a/std/fs/move.ts
+++ b/std/fs/move.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { exists, existsSync } from "./exists.ts";
import { isSubdir } from "./_util.ts";
diff --git a/std/fs/move_test.ts b/std/fs/move_test.ts
index 7bc7e8fee..048193755 100644
--- a/std/fs/move_test.ts
+++ b/std/fs/move_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import {
assertEquals,
assertThrows,
diff --git a/std/fs/test.ts b/std/fs/test.ts
index 57684a50e..590417055 100644
--- a/std/fs/test.ts
+++ b/std/fs/test.ts
@@ -1,2 +1,2 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import "./mod.ts";
diff --git a/std/fs/walk_test.ts b/std/fs/walk_test.ts
index eae21f7b1..5eb6ebd69 100644
--- a/std/fs/walk_test.ts
+++ b/std/fs/walk_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { walk, WalkEntry, WalkOptions, walkSync } from "./walk.ts";
import { assert, assertEquals, assertThrowsAsync } from "../testing/asserts.ts";