question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

how to make it work on monorepos?

See original GitHub issue

I 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:closed
  • Created 4 years ago
  • Reactions:4
  • Comments:9 (2 by maintainers)

github_iconTop GitHub Comments

2reactions
peanutbothercommented, May 17, 2019

@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:

- node_modules
- packages
|  |- shared
|  |  |- package.json / index.js / etc
|  |- core
|  |  |- package.json / index.js / etc
|  |  |- node_modules
|  |  |  |- .bin
|- ...

in packages/core/package.json I have to include packages from ../../node_modules in my assets setting, else they won’t get included because local node_modules folder is empty except for .bin folder.

{
"pkg": {
    "targets": [
      "node12"
    ],
    "scripts": [
      "package.json",
      "cli/commands/*.js",
      "../../node_modules/some-module/dependency/**/*.*"
    ],
    "assets": [
      "public/**/*.*",
      "..."
    ]
}
1reaction
DaneTheorycommented, Apr 27, 2021

@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!

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found