Skip to content

Commit abff63b

Browse files
authored
chore: move to simple flags (#13)
1 parent d09b8d7 commit abff63b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

deno.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
},
88
"tasks": {
99
"test": "deno test --doc -A",
10-
"cli": "deno run --allow-read --allow-write --allow-env --allow-net=0.0.0.0,127.0.0.1 --allow-run ./src/cli.ts --",
11-
"dev": "deno run --allow-read --allow-write --allow-env --allow-net=0.0.0.0,127.0.0.1 --allow-run ./src/cli.ts -- README.md",
12-
"dev:all": "deno run --allow-read --allow-write --allow-env --allow-net=0.0.0.0,127.0.0.1 --allow-run ./src/cli.ts -w --stylesheet=src/testdata/bluecode.css -- README.md",
13-
"dev:help": "deno run --allow-read --allow-write --allow-env --allow-net=0.0.0.0,127.0.0.1 --allow-run ./src/cli.ts --help",
14-
"dev:css": "deno run --allow-read --allow-write --allow-env --allow-net=0.0.0.0,127.0.0.1 --allow-run ./src/cli.ts -- ./src/testdata/bluecode.md",
15-
"dev:invalidcss": "deno run --allow-read --allow-write --allow-env --allow-net=0.0.0.0,127.0.0.1 --allow-run ./src/cli.ts --stylesheet=src/testdata/redcode.css -- README.md",
16-
"dev:watch": "deno run --allow-read --allow-write --allow-env --allow-net=0.0.0.0,127.0.0.1 --allow-run ./src/cli.ts --watch -- README.md"
10+
"cli": "deno run -A ./src/cli.ts --",
11+
"dev": "deno run -A ./src/cli.ts -- README.md",
12+
"dev:all": "deno run -A ./src/cli.ts -w --stylesheet=src/testdata/bluecode.css -- README.md",
13+
"dev:help": "deno run -A ./src/cli.ts --help",
14+
"dev:css": "deno run -A ./src/cli.ts -- ./src/testdata/bluecode.md",
15+
"dev:invalidcss": "deno run -A ./src/cli.ts --stylesheet=src/testdata/redcode.css -- README.md",
16+
"dev:watch": "deno run --A ./src/cli.ts --watch -- README.md"
1717
},
1818
"imports": {
1919
"@astral/astral": "jsr:@astral/astral@^0.4.5",

0 commit comments

Comments
 (0)