feat: support 1.38 flags

This commit is contained in:
Simon Lecoq
2023-11-02 21:55:45 -04:00
parent 18bdf2b271
commit 49351f4506
5 changed files with 58 additions and 7 deletions

View File

@@ -11,11 +11,23 @@
"unstable": true,
"quiet": true,
"certificateErrors": false,
"importMap": "imports.json",
"importMap": ".imports.json",
"cert": "/dev/null",
"location": "https://deno.test",
"seed": 0,
"v8Flags": ["--print-code"]
"v8Flags": ["--print-code"],
"env": true
},
"test": {
"env": ".env",
"unstable": ["kv", "bare-node-builtins"]
},
"bench": {
"env": false,
"unstable": []
},
"lint": {
"unstable": false
}
}
},

View File

@@ -19,6 +19,20 @@
"json": true
}
}
},
"flags:doc_alt": {
"task": [
"deno doc mod.ts;",
"rm -rf .docs"
],
"cwd": "tests",
"deno": {
"doc": {
"html": true,
"name": "test",
"output": ".docs"
}
}
}
}
}

View File

@@ -1 +0,0 @@
{}