how to make it work on monorepos?
See original GitHub issueI want to use pkg
to bundle one of my packages in a monorepo, using yarn workspaces
repository: https://github.com/entria/entria-fullstack
command run:
pkg packages/server/src/index.js
this is the error:
Warning Cannot find module ‘./app’ from ‘/entria-fullstack/packages/server/src’
Issue Analytics
- State:
- Created 4 years ago
- Reactions:4
- Comments:9 (2 by maintainers)
Top Results From Across the Web
A Guide to Monorepos for Front-end Code - Toptal
Monorepo allows you to reuse your packages from other packages while keeping them isolated from one another. You can use a reference to...
Read more >What is monorepo? (and should you use it?) - Semaphore CI
A monorepo is a version-controlled code repository that holds many projects. While these projects may be related, they are often logically ...
Read more >Monorepos in Git | Atlassian Git Tutorial
First, Git tracks the state of the whole tree in every single commit made. This is fine for single or related projects but...
Read more >How to create a Monorepo from Existing Repositories in 7 Steps
1. Create a Monorepo repository · 2. Copy Repositories to /packages · 3. Merge all composer.json to Root One · 4. Balance External...
Read more >How to Create a React Typescript Monorepo with Git ...
In addition to monorepos, we also have the concept of submodules. Let's say that we want to add a feature to our app...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@hipstersmoothie did you pass the right directory of the plugins? maybe you have yarn workspaces enabled in which case you need to include those packages from parent directory
node_modules
I have the following directory structure with yarn workspaces:
in
packages/core/package.json
I have to include packages from../../node_modules
in myassets
setting, else they won’t get included because localnode_modules
folder is empty except for.bin
folder.@hipstersmoothie glad you were able to figure out a workable solution. Assuming the plugins you’re bundling together within the CLI app are not all required deps, why not bundle them as compressed archives rather than compiled code? Then have the CLI app interface with each plugin on an as-needed basis. Cheers!