Dependency tree not resolving properly for deno modules in local filesystem.
Background:
I'm working on an application with many custom utilities as dependencies. I have these utilities divided out into smaller
Issue
For some reason I'm getting an error when trying to test my application with
Given these imports in the
- for
- for
Any advice on what I'm doing wrong?
I'm working on an application with many custom utilities as dependencies. I have these utilities divided out into smaller
deno.json packages for better organization. All of these utility packages are on my local filesystem, and since I'm still working on development and planning still I'm unlikely to publish them at the moment. Some of these utilities depend on eachother and form a tree of package dependencies; all on my local filesystem. Some of the utilities are shared between multiple projects and are kept in a separate generic libs folder on my filesystem. Issue
For some reason I'm getting an error when trying to test my application with
deno run: Given these imports in the
deno.json files for each package i'd expect it to work as expected:- for
@meep/kms (the app which was run)- for
@meep/tsxAny advice on what I'm doing wrong?
