Skip to content

Commit e025cf2

Browse files
committed
fmt + lint
1 parent a88274c commit e025cf2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

compile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// ex. scripts/build_npm.ts
22
import { build, emptyDir } from "https://deno.land/x/[email protected]/mod.ts";
3-
import project from "./project.json" assert { type: "json" };
3+
import project from "./project.json" with { type: "json" };
44

55
await emptyDir("./npm");
66

mod.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ export class FeatureFlags<
7070
return this._store;
7171
}
7272

73-
get<Flag extends FeatureFlag<Schema>>(flag: Flag): FeatureFlagOption<Schema, Flag> {
73+
get<Flag extends FeatureFlag<Schema>>(
74+
flag: Flag,
75+
): FeatureFlagOption<Schema, Flag> {
7476
return this._store[flag];
7577
}
7678

0 commit comments

Comments
 (0)