diff --git a/import-map.dev.json b/import-map.dev.json new file mode 100644 index 0000000..59c72ee --- /dev/null +++ b/import-map.dev.json @@ -0,0 +1,9 @@ +{ + "imports": { + "daton/": "file:///home/garrettmills/Projects/daton/", + "daton-lib/": "file:///home/garrettmills/Projects/daton/lib/src/", + "daton-di/": "file:///home/garrettmills/Projects/daton/di/src/", + "daton-orm/": "file:///home/garrettmills/Projects/daton/orm/src/", + "daton-external/": "file:///home/garrettmills/Projects/daton/lib/src/external/" + } +} \ No newline at end of file diff --git a/import-map.json b/import-map.json index af4fc2e..59c72ee 100644 --- a/import-map.json +++ b/import-map.json @@ -1,9 +1,9 @@ { "imports": { - "daton/": "https://code.garrettmills.dev/garrettmills/daton/raw/branch/master/", - "daton-lib/": "https://code.garrettmills.dev/garrettmills/daton/raw/branch/master/lib/src/", - "daton-di/": "https://code.garrettmills.dev/garrettmills/daton/raw/branch/master/di/src/", - "daton-orm/": "https://code.garrettmills.dev/garrettmills/daton/raw/branch/master/orm/src/", - "daton-external/": "https://code.garrettmills.dev/garrettmills/daton/raw/branch/master/lib/src/external/" + "daton/": "file:///home/garrettmills/Projects/daton/", + "daton-lib/": "file:///home/garrettmills/Projects/daton/lib/src/", + "daton-di/": "file:///home/garrettmills/Projects/daton/di/src/", + "daton-orm/": "file:///home/garrettmills/Projects/daton/orm/src/", + "daton-external/": "file:///home/garrettmills/Projects/daton/lib/src/external/" } } \ No newline at end of file diff --git a/index.ts b/index.ts index 6f5afc2..a60fd8d 100755 --- a/index.ts +++ b/index.ts @@ -1,4 +1,4 @@ -#!/usr/bin/env -S deno run -c ./tsconfig.json --unstable --allow-read --allow-env --allow-net --importmap=./import-map.json +#!/usr/bin/env -S deno run -c ./tsconfig.json --unstable --allow-read --allow-env --allow-net --importmap=./import-map.json --reload /* Main executable for the Daton app. */ import { make, Scaffolding, Application } from './bundle/daton.ts'