diff --git a/.gitignore b/.gitignore index 58df6d2..710d3e4 100644 --- a/.gitignore +++ b/.gitignore @@ -80,6 +80,7 @@ __pycache__ ml/filter/runs ml/pred/runs ml/pred/checkpoints +ml/pred/observed ml/data/ ml/filter/checkpoints scripts diff --git a/packages/crawler/deno.json b/packages/crawler/deno.json index 1d91eda..4f95bb9 100644 --- a/packages/crawler/deno.json +++ b/packages/crawler/deno.json @@ -45,5 +45,6 @@ "indentWidth": 4, "semiColons": true, "proseWrap": "always" - } + }, + "exports": "./main.ts" } \ No newline at end of file diff --git a/packages/crawler/main.ts b/packages/crawler/main.ts new file mode 100644 index 0000000..8280e6d --- /dev/null +++ b/packages/crawler/main.ts @@ -0,0 +1,7 @@ +// DENO ASK ME TO EXPORT SOMETHING WHEN 'name' IS SPECIFIED +// AND IF I DON'T SPECIFY 'name', THE --filter FLAG IN `deno task` WON'T WORK. +// I DONT'T KNOW WHY +// SO HERE'S A PLACHOLDER EXPORT FOR DENO: +export const DENO = "FUCK YOU DENO"; +// Oh, maybe export the version is a good idea +export const VERSION = "1.0.12"; \ No newline at end of file