summaryrefslogtreecommitdiff
path: root/cli/tools
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tools')
-rw-r--r--cli/tools/bench.rs2
-rw-r--r--cli/tools/bundle.rs2
-rw-r--r--cli/tools/check.rs2
-rw-r--r--cli/tools/coverage/json_types.rs2
-rw-r--r--cli/tools/coverage/merge.rs2
-rw-r--r--cli/tools/coverage/mod.rs2
-rw-r--r--cli/tools/coverage/range_tree.rs2
-rw-r--r--cli/tools/doc.rs2
-rw-r--r--cli/tools/fmt.rs2
-rw-r--r--cli/tools/info.rs2
-rw-r--r--cli/tools/init/mod.rs2
-rw-r--r--cli/tools/installer.rs2
-rw-r--r--cli/tools/lint.rs2
-rw-r--r--cli/tools/mod.rs2
-rw-r--r--cli/tools/repl/cdp.rs2
-rw-r--r--cli/tools/repl/channel.rs2
-rw-r--r--cli/tools/repl/editor.rs2
-rw-r--r--cli/tools/repl/mod.rs2
-rw-r--r--cli/tools/repl/session.rs2
-rw-r--r--cli/tools/run.rs2
-rw-r--r--cli/tools/standalone.rs2
-rw-r--r--cli/tools/task.rs2
-rw-r--r--cli/tools/test.rs2
-rw-r--r--cli/tools/upgrade.rs2
-rw-r--r--cli/tools/vendor/analyze.rs2
-rw-r--r--cli/tools/vendor/build.rs2
-rw-r--r--cli/tools/vendor/import_map.rs2
-rw-r--r--cli/tools/vendor/mappings.rs2
-rw-r--r--cli/tools/vendor/mod.rs2
-rw-r--r--cli/tools/vendor/specifiers.rs2
-rw-r--r--cli/tools/vendor/test.rs2
31 files changed, 31 insertions, 31 deletions
diff --git a/cli/tools/bench.rs b/cli/tools/bench.rs
index 2bebe124b..24fb07919 100644
--- a/cli/tools/bench.rs
+++ b/cli/tools/bench.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::args::BenchConfig;
use crate::args::BenchFlags;
diff --git a/cli/tools/bundle.rs b/cli/tools/bundle.rs
index 95aa52b5b..375a64088 100644
--- a/cli/tools/bundle.rs
+++ b/cli/tools/bundle.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use std::path::PathBuf;
use std::sync::Arc;
diff --git a/cli/tools/check.rs b/cli/tools/check.rs
index cf3bf0a49..e3fb664ad 100644
--- a/cli/tools/check.rs
+++ b/cli/tools/check.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use std::sync::Arc;
diff --git a/cli/tools/coverage/json_types.rs b/cli/tools/coverage/json_types.rs
index 6da17d58f..d5c6591f7 100644
--- a/cli/tools/coverage/json_types.rs
+++ b/cli/tools/coverage/json_types.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use serde::Deserialize;
use serde::Serialize;
diff --git a/cli/tools/coverage/merge.rs b/cli/tools/coverage/merge.rs
index d995c6ab3..7fe382d24 100644
--- a/cli/tools/coverage/merge.rs
+++ b/cli/tools/coverage/merge.rs
@@ -1,6 +1,6 @@
// Forked from https://github.com/demurgos/v8-coverage/tree/d0ca18da8740198681e0bc68971b0a6cdb11db3e/rust
// Copyright 2021 Charles Samborski. All rights reserved. MIT license.
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use super::json_types::CoverageRange;
use super::json_types::FunctionCoverage;
diff --git a/cli/tools/coverage/mod.rs b/cli/tools/coverage/mod.rs
index 04ed9d033..075a43fea 100644
--- a/cli/tools/coverage/mod.rs
+++ b/cli/tools/coverage/mod.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::args::CoverageFlags;
use crate::args::Flags;
diff --git a/cli/tools/coverage/range_tree.rs b/cli/tools/coverage/range_tree.rs
index 87ddd8baa..19b3257f8 100644
--- a/cli/tools/coverage/range_tree.rs
+++ b/cli/tools/coverage/range_tree.rs
@@ -1,6 +1,6 @@
// Forked from https://github.com/demurgos/v8-coverage/tree/d0ca18da8740198681e0bc68971b0a6cdb11db3e/rust
// Copyright 2021 Charles Samborski. All rights reserved. MIT license.
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use super::json_types::CoverageRange;
use std::iter::Peekable;
diff --git a/cli/tools/doc.rs b/cli/tools/doc.rs
index b01e96847..0067e485a 100644
--- a/cli/tools/doc.rs
+++ b/cli/tools/doc.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::args::DocFlags;
use crate::args::Flags;
diff --git a/cli/tools/fmt.rs b/cli/tools/fmt.rs
index fee59c6dc..3cfec9019 100644
--- a/cli/tools/fmt.rs
+++ b/cli/tools/fmt.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 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/info.rs b/cli/tools/info.rs
index 86a18c4e2..87e2d41d2 100644
--- a/cli/tools/info.rs
+++ b/cli/tools/info.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use std::collections::HashMap;
use std::collections::HashSet;
diff --git a/cli/tools/init/mod.rs b/cli/tools/init/mod.rs
index ca919b606..12d5872f1 100644
--- a/cli/tools/init/mod.rs
+++ b/cli/tools/init/mod.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::args::InitFlags;
use crate::colors;
diff --git a/cli/tools/installer.rs b/cli/tools/installer.rs
index 07397131c..7f5a89a59 100644
--- a/cli/tools/installer.rs
+++ b/cli/tools/installer.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::args::resolve_no_prompt;
use crate::args::ConfigFlag;
diff --git a/cli/tools/lint.rs b/cli/tools/lint.rs
index 9925c3273..4606375c1 100644
--- a/cli/tools/lint.rs
+++ b/cli/tools/lint.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
//! This module provides file linting utilities using
//! [`deno_lint`](https://github.com/denoland/deno_lint).
diff --git a/cli/tools/mod.rs b/cli/tools/mod.rs
index 595fdd760..cf29435a7 100644
--- a/cli/tools/mod.rs
+++ b/cli/tools/mod.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
pub mod bench;
pub mod bundle;
diff --git a/cli/tools/repl/cdp.rs b/cli/tools/repl/cdp.rs
index de2d784f7..f90a1875e 100644
--- a/cli/tools/repl/cdp.rs
+++ b/cli/tools/repl/cdp.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
/// <https://chromedevtools.github.io/devtools-protocol/tot/>
use deno_core::serde_json;
diff --git a/cli/tools/repl/channel.rs b/cli/tools/repl/channel.rs
index 4f2086fb5..47007e634 100644
--- a/cli/tools/repl/channel.rs
+++ b/cli/tools/repl/channel.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use deno_core::anyhow::anyhow;
use deno_core::error::AnyError;
diff --git a/cli/tools/repl/editor.rs b/cli/tools/repl/editor.rs
index 86d4ce4f9..fbdda3f5c 100644
--- a/cli/tools/repl/editor.rs
+++ b/cli/tools/repl/editor.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::colors;
use deno_ast::swc::parser::error::SyntaxError;
diff --git a/cli/tools/repl/mod.rs b/cli/tools/repl/mod.rs
index b59405580..929a1b5d8 100644
--- a/cli/tools/repl/mod.rs
+++ b/cli/tools/repl/mod.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::args::Flags;
use crate::args::ReplFlags;
diff --git a/cli/tools/repl/session.rs b/cli/tools/repl/session.rs
index 3f6528f3b..0c0563ab8 100644
--- a/cli/tools/repl/session.rs
+++ b/cli/tools/repl/session.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::colors;
use crate::lsp::ReplLanguageServer;
diff --git a/cli/tools/run.rs b/cli/tools/run.rs
index 617ec28f6..af982e483 100644
--- a/cli/tools/run.rs
+++ b/cli/tools/run.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use std::io::Read;
use std::path::PathBuf;
diff --git a/cli/tools/standalone.rs b/cli/tools/standalone.rs
index ffc4d1f38..471c9605d 100644
--- a/cli/tools/standalone.rs
+++ b/cli/tools/standalone.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::args::CompileFlags;
use crate::args::Flags;
diff --git a/cli/tools/task.rs b/cli/tools/task.rs
index 39d493492..51fd377e4 100644
--- a/cli/tools/task.rs
+++ b/cli/tools/task.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::args::Flags;
use crate::args::TaskFlags;
diff --git a/cli/tools/test.rs b/cli/tools/test.rs
index 5fa72f7a7..35c0ea079 100644
--- a/cli/tools/test.rs
+++ b/cli/tools/test.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::args::Flags;
use crate::args::TestFlags;
diff --git a/cli/tools/upgrade.rs b/cli/tools/upgrade.rs
index a9b60413b..dfdbe188a 100644
--- a/cli/tools/upgrade.rs
+++ b/cli/tools/upgrade.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
//! This module provides feature to upgrade deno executable
diff --git a/cli/tools/vendor/analyze.rs b/cli/tools/vendor/analyze.rs
index 0aa7010c7..3b1f20ad9 100644
--- a/cli/tools/vendor/analyze.rs
+++ b/cli/tools/vendor/analyze.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use deno_ast::swc::ast::ExportDefaultDecl;
use deno_ast::swc::ast::ExportSpecifier;
diff --git a/cli/tools/vendor/build.rs b/cli/tools/vendor/build.rs
index bdb384e43..8a5b638be 100644
--- a/cli/tools/vendor/build.rs
+++ b/cli/tools/vendor/build.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use std::fmt::Write as _;
use std::path::Path;
diff --git a/cli/tools/vendor/import_map.rs b/cli/tools/vendor/import_map.rs
index b5df81271..411a2e059 100644
--- a/cli/tools/vendor/import_map.rs
+++ b/cli/tools/vendor/import_map.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use deno_ast::LineAndColumnIndex;
use deno_ast::ModuleSpecifier;
diff --git a/cli/tools/vendor/mappings.rs b/cli/tools/vendor/mappings.rs
index 57571cf11..14705e51e 100644
--- a/cli/tools/vendor/mappings.rs
+++ b/cli/tools/vendor/mappings.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use std::collections::HashMap;
use std::collections::HashSet;
diff --git a/cli/tools/vendor/mod.rs b/cli/tools/vendor/mod.rs
index 21e3a4485..c15c7d1d3 100644
--- a/cli/tools/vendor/mod.rs
+++ b/cli/tools/vendor/mod.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use std::path::Path;
use std::path::PathBuf;
diff --git a/cli/tools/vendor/specifiers.rs b/cli/tools/vendor/specifiers.rs
index 21ae2ca85..d4f413c31 100644
--- a/cli/tools/vendor/specifiers.rs
+++ b/cli/tools/vendor/specifiers.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use std::collections::BTreeMap;
use std::collections::HashSet;
diff --git a/cli/tools/vendor/test.rs b/cli/tools/vendor/test.rs
index 9cf2bb603..61c885731 100644
--- a/cli/tools/vendor/test.rs
+++ b/cli/tools/vendor/test.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use std::cell::RefCell;
use std::collections::HashMap;