diff options
author | Yusuke Tanaka <yusuktan@maguro.dev> | 2021-01-12 02:13:41 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-11 18:13:41 +0100 |
commit | d8fd71afdf0c5d62b7ae2b9eb7b877ca74f3c2e7 (patch) | |
tree | c8774388adbb9170058d71e924def93079b927f3 /cli/tools | |
parent | d676b6c63ada85801673f0e691f8ba11e44e347a (diff) |
chore: update copyright to 2021 (#9092)
Diffstat (limited to 'cli/tools')
-rw-r--r-- | cli/tools/coverage.rs | 2 | ||||
-rw-r--r-- | cli/tools/fmt.rs | 2 | ||||
-rw-r--r-- | cli/tools/installer.rs | 2 | ||||
-rw-r--r-- | cli/tools/lint.rs | 2 | ||||
-rw-r--r-- | cli/tools/mod.rs | 2 | ||||
-rw-r--r-- | cli/tools/repl.rs | 2 | ||||
-rw-r--r-- | cli/tools/standalone.rs | 2 | ||||
-rw-r--r-- | cli/tools/test_runner.rs | 2 | ||||
-rw-r--r-- | cli/tools/upgrade.rs | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/cli/tools/coverage.rs b/cli/tools/coverage.rs index 020d358ba..615022b74 100644 --- a/cli/tools/coverage.rs +++ b/cli/tools/coverage.rs @@ -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. use crate::colors; use crate::module_graph::TypeLib; diff --git a/cli/tools/fmt.rs b/cli/tools/fmt.rs index 883ebc45b..d5500a8f2 100644 --- a/cli/tools/fmt.rs +++ b/cli/tools/fmt.rs @@ -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. //! This module provides file formatting utilities using //! [`dprint-plugin-typescript`](https://github.com/dprint/dprint-plugin-typescript). diff --git a/cli/tools/installer.rs b/cli/tools/installer.rs index e04763172..4f8801f09 100644 --- a/cli/tools/installer.rs +++ b/cli/tools/installer.rs @@ -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. use crate::flags::Flags; use crate::fs_util::canonicalize_path; diff --git a/cli/tools/lint.rs b/cli/tools/lint.rs index dc9a51a89..44d5677e8 100644 --- a/cli/tools/lint.rs +++ b/cli/tools/lint.rs @@ -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. //! This module provides file formating utilities using //! [`deno_lint`](https://github.com/denoland/deno_lint). diff --git a/cli/tools/mod.rs b/cli/tools/mod.rs index 4489b7479..089232b99 100644 --- a/cli/tools/mod.rs +++ b/cli/tools/mod.rs @@ -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. pub mod coverage; pub mod fmt; diff --git a/cli/tools/repl.rs b/cli/tools/repl.rs index 61d7809c3..e59fd57a8 100644 --- a/cli/tools/repl.rs +++ b/cli/tools/repl.rs @@ -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. use crate::ast; use crate::ast::TokenOrComment; diff --git a/cli/tools/standalone.rs b/cli/tools/standalone.rs index 112169756..141b3e820 100644 --- a/cli/tools/standalone.rs +++ b/cli/tools/standalone.rs @@ -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. use crate::flags::DenoSubcommand; use crate::flags::Flags; diff --git a/cli/tools/test_runner.rs b/cli/tools/test_runner.rs index 64cff7e0f..172ca54ea 100644 --- a/cli/tools/test_runner.rs +++ b/cli/tools/test_runner.rs @@ -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. use crate::fs_util; use crate::tools::installer::is_remote_url; diff --git a/cli/tools/upgrade.rs b/cli/tools/upgrade.rs index a404f75f5..58c283ecd 100644 --- a/cli/tools/upgrade.rs +++ b/cli/tools/upgrade.rs @@ -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. //! This module provides feature to upgrade deno executable |