-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.jsonc
34 lines (28 loc) · 2.21 KB
/
deno.jsonc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
// ##### Note: "import_map.json" will provide additional modules for (deno) and (citation.js)
"importMap": "import_map.json",
"tasks": {
// #####
// ##### Note: option below pulls entries from URL, but does not provide a filename to save entries.
// ##### However, if (entries.json) is provided inside file (config.js), then the code takes this information from (config.js).
// ##### Meaning, filename (entries.json) provided in (deno.jsonc) has priority over (config.js)
//"process": "deno run -A --unstable process.js",
// #####
// ##### Note: option below pulls entries from URL and save to file indicated.
"process": "deno run -A --unstable process.js -f ./corpus/entries_log1.json",
"process-pull": "deno run -A --unstable process.js -f ./corpus/entries_log1.json", // ##### same as above, but called using a more descripted string
// #####
// ##### Note:
"process-dry": "deno run -A --unstable process.js",
// #####
// ##### Note: option below pulls entries from existing and indicated.
// ##### Note: If you do not pull entries from URL (i.e. -p false), then you must provide a file containing the entries to be processed
// ##### Note: If pull (false), then a filename must be given in (deno.jsonc)
"process-read-test00": "deno run -A --unstable process.js -p false -f ./corpus/entries_test00.json", // ##### run to test target list of entries
"process-read-test0": "deno run -A --unstable process.js -p false -f ./corpus/entries_test0.json", // ##### run to test target list of entries
"process-read-test1": "deno run -A --unstable process.js -p false -f ./corpus/entries_test1.json", // ##### run to test target list of entries (selected items)
"process-read-test2": "deno run -A --unstable process.js -p false -f ./corpus/entries_test2.json", // ##### run to test target list of entries (all mergeded)
"process-read-test3": "deno run -A --unstable process.js -p false -f ./corpus/entries_test3.json", // ##### run to test target list of entries (all mergeded and reduced)
"process-read-entries_14867_23Feb2023": "deno run -A --unstable process.js -p false -f ./corpus/entries_14867_23Feb2023.json" // ##### run to test target list of entries
}
}