Skip to content

Commit ad4076b

Browse files
committed
feat: #55-deno-support - Notes
- Scaffolding for 'deno.json.imports' field script.
1 parent dff3bf3 commit ad4076b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

node_scripts/tasks/fjl-deno.json.mjs

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import fs from 'node:fs/promises';
2+
import path from "node:path";
3+
4+
const fjlRoot = path.join(__dirname, '../../');
5+
6+
await (async () => {
7+
8+
// Read 'fjl/src'
9+
// Scaffold out the matching 'deno.json.imports' field
10+
// for all source imports to
11+
// work as they are (without file extensions).
12+
13+
})();

0 commit comments

Comments
 (0)