mirror of
https://github.com/getwax/bls-wallet.git
synced 2026-01-07 23:04:14 -05:00
Remove more --unstable
This commit is contained in:
2
.github/workflows/aggregator.yml
vendored
2
.github/workflows/aggregator.yml
vendored
@@ -75,4 +75,4 @@ jobs:
|
||||
run: ./scripts/wait-for-rpc.sh
|
||||
|
||||
- run: cp .env.local.example .env
|
||||
- run: deno test --allow-net --allow-env --allow-read --unstable
|
||||
- run: deno test --allow-net --allow-env --allow-read
|
||||
|
||||
1
aggregator/.vscode/launch.json
vendored
1
aggregator/.vscode/launch.json
vendored
@@ -13,7 +13,6 @@
|
||||
"runtimeExecutable": "deno",
|
||||
"runtimeArgs": [
|
||||
"run",
|
||||
"--unstable",
|
||||
"--inspect",
|
||||
"--allow-all"
|
||||
],
|
||||
|
||||
@@ -16,7 +16,7 @@ export async function checkTs(): Promise<void> {
|
||||
tsFiles.map((f) => `import "${repoDir}/${f}";`).join("\n"),
|
||||
);
|
||||
|
||||
await shell.run("deno", "check", "--unstable", testFilePath);
|
||||
await shell.run("deno", "check", testFilePath);
|
||||
} finally {
|
||||
if (testFilePath !== nil) {
|
||||
await Deno.remove(testFilePath);
|
||||
|
||||
@@ -42,7 +42,6 @@ function Checks(): Check[] {
|
||||
"--allow-net",
|
||||
"--allow-env",
|
||||
"--allow-read",
|
||||
"--unstable",
|
||||
"--",
|
||||
"--env",
|
||||
envName,
|
||||
|
||||
2
setup.ts
2
setup.ts
@@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env -S deno run --unstable --allow-run --allow-read --allow-write
|
||||
#!/usr/bin/env -S deno run --allow-run --allow-read --allow-write
|
||||
|
||||
import { exists } from "https://deno.land/std@0.103.0/fs/mod.ts";
|
||||
import * as shell from "./aggregator/programs/helpers/shell.ts";
|
||||
|
||||
Reference in New Issue
Block a user