fix: missing export in deno.json
This commit is contained in:
parent
d88ad099c4
commit
879a6604e5
1
.gitignore
vendored
1
.gitignore
vendored
@ -80,6 +80,7 @@ __pycache__
|
|||||||
ml/filter/runs
|
ml/filter/runs
|
||||||
ml/pred/runs
|
ml/pred/runs
|
||||||
ml/pred/checkpoints
|
ml/pred/checkpoints
|
||||||
|
ml/pred/observed
|
||||||
ml/data/
|
ml/data/
|
||||||
ml/filter/checkpoints
|
ml/filter/checkpoints
|
||||||
scripts
|
scripts
|
||||||
|
@ -45,5 +45,6 @@
|
|||||||
"indentWidth": 4,
|
"indentWidth": 4,
|
||||||
"semiColons": true,
|
"semiColons": true,
|
||||||
"proseWrap": "always"
|
"proseWrap": "always"
|
||||||
}
|
},
|
||||||
|
"exports": "./main.ts"
|
||||||
}
|
}
|
7
packages/crawler/main.ts
Normal file
7
packages/crawler/main.ts
Normal file
@ -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";
|
Loading…
Reference in New Issue
Block a user