Skip to content

Commit cb6ff3e

Browse files
committed
add runtime notes
1 parent e8ab8b5 commit cb6ff3e

File tree

9 files changed

+18
-0
lines changed

9 files changed

+18
-0
lines changed

bundle.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// This code is Deno only
2+
13
import { denoPlugins } from "@luca/esbuild-deno-loader";
24
import { debounce } from "@std/async/debounce";
35
import * as ESBuild from "esbuild";

dictionary/build.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// This code is Deno only
2+
13
import { parseDictionary } from "./parser.ts";
24

35
const SOURCE = new URL("./dictionary", import.meta.url);

dictionary/test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// This code is Deno only
2+
13
import { assertMatch } from "@std/assert/match";
24
import { dictionary } from "./dictionary.ts";
35

src/main.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// This code is browser only
2+
13
import { dictionary } from "../dictionary/dictionary.ts";
24
import { asComment } from "../dictionary/misc.ts";
35
import PROJECT_DATA from "../project_data.json" with { type: "json" };

src/parser/test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// This code is Deno only
2+
13
import { assertNotEquals } from "@std/assert/not-equals";
24
import { assertThrows } from "@std/assert/throws";
35
import { uniquePairs } from "../misc.ts";

src/settings_frontend.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// This code is browser only
2+
13
import { toKebabCase } from "@std/text/to-kebab-case";
24
import { checkLocalStorage, setIgnoreError } from "./misc.ts";
35
import {

src/translator/number_test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// This code is Deno only
2+
13
import { assert } from "@std/assert/assert";
24
import { number } from "./number.ts";
35

src/translator/test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// This code is Deno only
2+
13
import { assertArrayIncludes } from "@std/assert/array-includes";
24
import { translate } from "./translator.ts";
35

telo_misikeke/update.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// This code is Deno only
2+
13
import { retry } from "@std/async/retry";
24
import { assertOk } from "../src/misc.ts";
35

0 commit comments

Comments
 (0)