Skip to content

Commit

Permalink
chore: various updates (#395)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Mar 27, 2024
1 parent 1750995 commit c1df60c
Show file tree
Hide file tree
Showing 70 changed files with 82 additions and 69 deletions.
6 changes: 6 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Contributing

1. Install [Deno](https://deno.com/).
1. Install [Rust](https://www.rust-lang.org/learn/get-started).
1. Run `deno task build` to build the Wasm file from the Rust code.
1. Run `deno task test` to run JS tests or `cargo test` to run Rust tests.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright 2018-2023 the Deno authors
Copyright 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 in
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ Takes a Deno module and creates an npm package for use in Node.js.

There are several steps done in a pipeline:

1. Transforms Deno code to Node/canonical TypeScript including files found by
`deno test`.
1. Transforms Deno code to Node including files found by `deno test`.
- Rewrites module specifiers.
- Injects [shims](https://github.com/denoland/node_deno_shims) for any `Deno`
namespace or other global name usages as specified.
Expand Down
2 changes: 1 addition & 1 deletion lib/compiler.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import { ts } from "@ts-morph/bootstrap";
import * as path from "@std/path";
Expand Down
2 changes: 1 addition & 1 deletion lib/compiler_transforms.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import { assertEquals } from "@std/assert";
import { ts } from "@ts-morph/bootstrap";
Expand Down
2 changes: 1 addition & 1 deletion lib/compiler_transforms.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import { ts } from "@ts-morph/bootstrap";

Expand Down
2 changes: 1 addition & 1 deletion lib/npm_ignore.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import { assertEquals } from "@std/assert";
import { getNpmIgnoreText } from "./npm_ignore.ts";
Expand Down
2 changes: 1 addition & 1 deletion lib/npm_ignore.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import { OutputFile } from "../transform.ts";
import { SourceMapOptions } from "./compiler.ts";
Expand Down
2 changes: 1 addition & 1 deletion lib/package_json.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import { assertEquals } from "@std/assert";
import { getPackageJson, GetPackageJsonOptions } from "./package_json.ts";
Expand Down
2 changes: 1 addition & 1 deletion lib/package_json.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import type { EntryPoint, ShimOptions } from "../mod.ts";
import { TransformOutput } from "../transform.ts";
Expand Down
2 changes: 1 addition & 1 deletion lib/shims.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import { assertEquals } from "@std/assert";
import { shimOptionsToTransformShims } from "./shims.ts";
Expand Down
2 changes: 1 addition & 1 deletion lib/shims.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import type { GlobalName, Shim } from "../transform.ts";

Expand Down
2 changes: 1 addition & 1 deletion lib/test_runner/get_test_runner_code.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import { assertEquals } from "@std/assert";
import { getTestRunnerCode } from "./get_test_runner_code.ts";
Expand Down
2 changes: 1 addition & 1 deletion lib/test_runner/get_test_runner_code.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import CodeBlockWriter from "code-block-writer";
import { runTestDefinitions } from "./test_runner.ts";
Expand Down
2 changes: 1 addition & 1 deletion lib/test_runner/test_runner.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import { runTestDefinitions } from "./test_runner.ts";
import { assertEquals, assertRejects } from "@std/assert";
Expand Down
2 changes: 1 addition & 1 deletion lib/test_runner/test_runner.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

export interface Picocolors {
green(text: string): string;
Expand Down
2 changes: 1 addition & 1 deletion lib/test_utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.
import { assertEquals } from "@std/assert";

export function wildcardAssertEquals(actual: string, expected: string) {
Expand Down
2 changes: 1 addition & 1 deletion lib/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

interface PackageJsonPerson {
name: string;
Expand Down
2 changes: 1 addition & 1 deletion lib/utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import { expandGlob } from "@std/fs/expand_glob";
import * as path from "@std/path";
Expand Down
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import * as colors from "@std/fmt/colors";
import * as path from "@std/path";
Expand Down
2 changes: 2 additions & 0 deletions rs-lib/src/analyze/get_ignore_line_indexes.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright 2018-2024 the Deno authors. MIT license.

use std::collections::HashSet;

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

use std::collections::HashSet;

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

use deno_ast::view::*;
use deno_ast::SourceRanged;
Expand Down
2 changes: 1 addition & 1 deletion rs-lib/src/analyze/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

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

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

use std::collections::BTreeMap;
use std::collections::HashMap;
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-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

#![allow(clippy::bool_assert_comparison)]
#![deny(clippy::disallowed_methods)]
Expand Down
2 changes: 1 addition & 1 deletion rs-lib/src/loader/default_loader.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

use std::io::ErrorKind;
use std::pin::Pin;
Expand Down
2 changes: 1 addition & 1 deletion rs-lib/src/loader/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

use std::collections::BTreeMap;
use std::collections::HashMap;
Expand Down
2 changes: 1 addition & 1 deletion rs-lib/src/loader/specifier_mappers.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

use deno_ast::ModuleSpecifier;
use once_cell::sync::Lazy;
Expand Down
2 changes: 1 addition & 1 deletion rs-lib/src/mappings.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

use std::cell::RefCell;
use std::collections::HashMap;
Expand Down
2 changes: 1 addition & 1 deletion rs-lib/src/parser.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

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

use deno_ast::view::Callee;
use deno_ast::view::Expr;
Expand Down
2 changes: 1 addition & 1 deletion rs-lib/src/polyfills/array_from_async.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

use deno_ast::view::Node;

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

use deno_ast::view::Node;
use deno_ast::SourceRanged;
Expand Down
2 changes: 1 addition & 1 deletion rs-lib/src/polyfills/import_meta.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

use deno_ast::view::Expr;
use deno_ast::view::Node;
Expand Down
2 changes: 1 addition & 1 deletion rs-lib/src/polyfills/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

use std::collections::HashSet;

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

use deno_ast::view::Node;

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

use deno_ast::view::Node;

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

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

use std::collections::BTreeMap;
use std::collections::HashMap;
Expand Down
2 changes: 1 addition & 1 deletion rs-lib/src/visitors/deno_comment_directives.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

use deno_ast::swc::common::comments::Comment;
use deno_ast::view::*;
Expand Down
2 changes: 1 addition & 1 deletion rs-lib/src/visitors/globals.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

use std::collections::HashSet;

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

use std::collections::HashMap;
use std::path::PathBuf;
Expand Down
2 changes: 1 addition & 1 deletion rs-lib/src/visitors/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

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

use std::collections::HashSet;

Expand Down
2 changes: 1 addition & 1 deletion rs-lib/tests/integration/in_memory_loader.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

use std::collections::HashMap;
use std::path::Path;
Expand Down
2 changes: 1 addition & 1 deletion rs-lib/tests/integration/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

mod in_memory_loader;
mod test_builder;
Expand Down
2 changes: 1 addition & 1 deletion rs-lib/tests/integration/test_builder.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

use std::collections::HashMap;
use std::rc::Rc;
Expand Down
2 changes: 1 addition & 1 deletion rs-lib/tests/integration_test.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

use std::path::PathBuf;

Expand Down
2 changes: 1 addition & 1 deletion tests/integration.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import { assertEquals, assertRejects, assertStringIncludes } from "@std/assert";
import * as path from "@std/path";
Expand Down
2 changes: 1 addition & 1 deletion tests/jsr_project/mod.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import { add } from "./mod.ts";
import { assertEquals } from "jsr:@std/assert@0.220/assert_equals";
Expand Down
2 changes: 1 addition & 1 deletion tests/jsr_project/mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import { parse } from "jsr:@std/csv/parse";
import { assertEquals } from "jsr:@std/assert/assert_equals";
Expand Down
2 changes: 1 addition & 1 deletion tests/module_mappings_project/mod.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import { isDeno } from "https://deno.land/x/which_runtime@0.2.0/mod.ts";
import { output } from "./mod.ts";
Expand Down
2 changes: 1 addition & 1 deletion tests/module_mappings_project/mod.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

export { output } from "./output.deno.ts";
2 changes: 1 addition & 1 deletion tests/package_mappings_project/mod.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import { getResult } from "./mod.ts";

Expand Down
2 changes: 1 addition & 1 deletion tests/package_mappings_project/mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.
import CodeBlockWriter from "https://deno.land/x/code_block_writer@11.0.0/mod.ts";
import { using } from "npm:using-statement@^0.4";

Expand Down
2 changes: 1 addition & 1 deletion tests/polyfill_project/mod.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import { assertEquals } from "https://deno.land/std@0.181.0/testing/asserts.ts";
import { hasOwn, withResolvers } from "./mod.ts";
Expand Down
2 changes: 1 addition & 1 deletion tests/polyfill_project/mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

export function hasOwn(a: { prop?: number }) {
try {
Expand Down
2 changes: 1 addition & 1 deletion tests/shim_project/mod.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.
import { isDeno } from "https://deno.land/x/which_runtime@0.2.0/mod.ts";
import {
addAsync,
Expand Down
2 changes: 1 addition & 1 deletion tests/shim_project/mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

export function addAsync(a: number, b: number) {
return new Promise<number>((resolve, reject) => {
Expand Down
2 changes: 1 addition & 1 deletion tests/test_project/mod.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import { add } from "./mod.ts";
import { assertEquals } from "https://deno.land/std@0.181.0/testing/asserts.ts";
Expand Down
2 changes: 1 addition & 1 deletion tests/test_project/mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

export function add(a: number, b: number) {
return a + b;
Expand Down
2 changes: 1 addition & 1 deletion tests/tla_project/mod.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

import { add } from "./mod.ts";

Expand Down
2 changes: 1 addition & 1 deletion tests/tla_project/mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

await new Promise<void>((resolve) => resolve());

Expand Down

0 comments on commit c1df60c

Please sign in to comment.