diff options
Diffstat (limited to 'cli/npm')
-rw-r--r-- | cli/npm/cache.rs | 2 | ||||
-rw-r--r-- | cli/npm/mod.rs | 2 | ||||
-rw-r--r-- | cli/npm/registry.rs | 2 | ||||
-rw-r--r-- | cli/npm/resolution/graph.rs | 2 | ||||
-rw-r--r-- | cli/npm/resolution/mod.rs | 2 | ||||
-rw-r--r-- | cli/npm/resolution/snapshot.rs | 2 | ||||
-rw-r--r-- | cli/npm/resolution/specifier.rs | 2 | ||||
-rw-r--r-- | cli/npm/resolvers/common.rs | 2 | ||||
-rw-r--r-- | cli/npm/resolvers/global.rs | 2 | ||||
-rw-r--r-- | cli/npm/resolvers/local.rs | 2 | ||||
-rw-r--r-- | cli/npm/resolvers/mod.rs | 2 | ||||
-rw-r--r-- | cli/npm/semver/mod.rs | 2 | ||||
-rw-r--r-- | cli/npm/semver/range.rs | 2 | ||||
-rw-r--r-- | cli/npm/semver/specifier.rs | 2 | ||||
-rw-r--r-- | cli/npm/tarball.rs | 2 |
15 files changed, 15 insertions, 15 deletions
diff --git a/cli/npm/cache.rs b/cli/npm/cache.rs index 952ee0285..6a6c6156c 100644 --- a/cli/npm/cache.rs +++ b/cli/npm/cache.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::HashSet; use std::fs; diff --git a/cli/npm/mod.rs b/cli/npm/mod.rs index 8c3464345..ce6fec5e5 100644 --- a/cli/npm/mod.rs +++ b/cli/npm/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. mod cache; mod registry; diff --git a/cli/npm/registry.rs b/cli/npm/registry.rs index 97d2a0e4d..ed0911697 100644 --- a/cli/npm/registry.rs +++ b/cli/npm/registry.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::cmp::Ordering; use std::collections::HashMap; diff --git a/cli/npm/resolution/graph.rs b/cli/npm/resolution/graph.rs index 48c55757e..a97eff037 100644 --- a/cli/npm/resolution/graph.rs +++ b/cli/npm/resolution/graph.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::borrow::Cow; use std::collections::BTreeMap; diff --git a/cli/npm/resolution/mod.rs b/cli/npm/resolution/mod.rs index 15de4ceff..c6e1c5d25 100644 --- a/cli/npm/resolution/mod.rs +++ b/cli/npm/resolution/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::collections::HashMap; use std::collections::HashSet; diff --git a/cli/npm/resolution/snapshot.rs b/cli/npm/resolution/snapshot.rs index 738b68d21..d7da35eba 100644 --- a/cli/npm/resolution/snapshot.rs +++ b/cli/npm/resolution/snapshot.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/npm/resolution/specifier.rs b/cli/npm/resolution/specifier.rs index db4bbd476..7ab327ba5 100644 --- a/cli/npm/resolution/specifier.rs +++ b/cli/npm/resolution/specifier.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::cmp::Ordering; use std::collections::HashMap; diff --git a/cli/npm/resolvers/common.rs b/cli/npm/resolvers/common.rs index a75c86c1c..ff8a63f9b 100644 --- a/cli/npm/resolvers/common.rs +++ b/cli/npm/resolvers/common.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::HashSet; use std::io::ErrorKind; diff --git a/cli/npm/resolvers/global.rs b/cli/npm/resolvers/global.rs index b005cbaeb..a42ccdd53 100644 --- a/cli/npm/resolvers/global.rs +++ b/cli/npm/resolvers/global.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. //! Code for global npm cache resolution. diff --git a/cli/npm/resolvers/local.rs b/cli/npm/resolvers/local.rs index 5d8367e73..04539e462 100644 --- a/cli/npm/resolvers/local.rs +++ b/cli/npm/resolvers/local.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. //! Code for local node_modules resolution. diff --git a/cli/npm/resolvers/mod.rs b/cli/npm/resolvers/mod.rs index 6225242a4..023ef625a 100644 --- a/cli/npm/resolvers/mod.rs +++ b/cli/npm/resolvers/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. mod common; mod global; diff --git a/cli/npm/semver/mod.rs b/cli/npm/semver/mod.rs index cf049c0dd..a87585809 100644 --- a/cli/npm/semver/mod.rs +++ b/cli/npm/semver/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::cmp::Ordering; use std::fmt; diff --git a/cli/npm/semver/range.rs b/cli/npm/semver/range.rs index 901b852c0..07ee2d62a 100644 --- a/cli/npm/semver/range.rs +++ b/cli/npm/semver/range.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::cmp::Ordering; diff --git a/cli/npm/semver/specifier.rs b/cli/npm/semver/specifier.rs index 269846f8c..3fdeab16d 100644 --- a/cli/npm/semver/specifier.rs +++ b/cli/npm/semver/specifier.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::Context; use deno_core::error::AnyError; diff --git a/cli/npm/tarball.rs b/cli/npm/tarball.rs index 487a8a6aa..504d44dca 100644 --- a/cli/npm/tarball.rs +++ b/cli/npm/tarball.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::HashSet; use std::fs; |