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.

Adding configuration and state to repos through CLI flags and separate files is going to get crazy. We should have one place for all of this in a repo.

{
  "version": "1.0.0",
  "independent": false,
  "owners": [
    "kittens",
    "thejameskyle",
    "hzoo"
  ],
  // ...
}

Issue Analytics

  • State:closed
  • Created 8 years ago
  • Comments:9 (7 by maintainers)

github_iconTop GitHub Comments

1reaction
evocateurcommented, Feb 23, 2016

If you go the package.json route, I would suggest namespacing it under lerna or somesuch, analogous to the way babel and eslint (and others) do it.

{
  "private": true,
  "lerna": {
    "version": "1.0.0",
    "independent": false,
    "owners": []
  },
  "devDependencies": {
    "foo": "^1.0.0"
  }
}
1reaction
jamiebuildscommented, Feb 11, 2016

It could also just work on top of the package.json

Read more comments on GitHub >

github_iconTop Results From Across the Web

Lerna is a fast, modern build system for managing ... - GitHub
Lerna is a fast modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository.
Read more >
Lerna: Documentation
Lerna is a fast modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository.
Read more >
How To Manage Monorepos With Lerna - DigitalOcean
Lerna is as a tool for managing JavaScript projects with multiple packages with features ... The init command creates a lerna.json file.
Read more >
Setting up a monorepo with Lerna for a TypeScript project
json is a Lerna configuration file. package.json is our usual manifest file. { "packages" ...
Read more >
JavaScript Monorepos with Lerna - Semaphore CI
Move all your applications, libraries, subprojects, and shared code into the packages folder. Each project should have a package.json and, ...
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