We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a88274c commit e025cf2Copy full SHA for e025cf2
compile.ts
@@ -1,6 +1,6 @@
1
// ex. scripts/build_npm.ts
2
import { build, emptyDir } from "https://deno.land/x/[email protected]/mod.ts";
3
-import project from "./project.json" assert { type: "json" };
+import project from "./project.json" with { type: "json" };
4
5
await emptyDir("./npm");
6
mod.ts
@@ -70,7 +70,9 @@ export class FeatureFlags<
70
return this._store;
71
}
72
73
- get<Flag extends FeatureFlag<Schema>>(flag: Flag): FeatureFlagOption<Schema, Flag> {
+ get<Flag extends FeatureFlag<Schema>>(
74
+ flag: Flag,
75
+ ): FeatureFlagOption<Schema, Flag> {
76
return this._store[flag];
77
78
0 commit comments