Skip to content

Commit

Permalink
chore: bump copyright year to 2024 (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret authored Jan 9, 2024
1 parent df81595 commit 86b20ae
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018-2023 the Deno authors
Copyright (c) 2018-2024 the Deno authors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ See [js/README.md](js/README.md).

---

Copyright 2018-2022 the Deno authors. All rights reserved. MIT License.
Copyright 2018-2024 the Deno authors. All rights reserved. MIT License.

[Build Status - Cirrus]: https://github.com/denoland/deno_emit/workflows/ci/badge.svg?branch=main&event=push
[Build status]: https://github.com/denoland/deno_emit/actions
Expand Down
2 changes: 1 addition & 1 deletion js/mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.

/** APIs to transpile and bundle JavaScript and TypeScript under Deno and Deno.
*
Expand Down
2 changes: 1 addition & 1 deletion rs-lib/src/bundle_hook.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.

use anyhow::Result;
use deno_ast::swc::ast;
Expand Down
2 changes: 1 addition & 1 deletion rs-lib/src/emit.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.

use anyhow::anyhow;
use anyhow::Context;
Expand Down
2 changes: 1 addition & 1 deletion rs-lib/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.

mod bundle_hook;
mod emit;
Expand Down
2 changes: 1 addition & 1 deletion rs-lib/src/text.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.

const BOM_CHAR: char = '\u{FEFF}';

Expand Down
2 changes: 1 addition & 1 deletion tests/bundle_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import {
assertEquals,
assertStringIncludes,
Expand Down
2 changes: 1 addition & 1 deletion tests/common_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { toFileUrl } from "https://deno.land/[email protected]/path/mod.ts";
import {
assertEquals,
Expand Down
2 changes: 1 addition & 1 deletion wasm/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.

use anyhow::anyhow;
use deno_emit::BundleOptions;
Expand Down

0 comments on commit 86b20ae

Please sign in to comment.