Matthias

Results 69 comments of Matthias

Here's what I did, but it seemed to already be up to date?: ``` $ git remote get-url origin https://github.com/matthias-ccri/http-server.git $ git remote add upstream https://github.com/http-party/http-server.git $ git pull upstream...

@thornjad is there a reason to not merge this?

@thornjad This MR has been ready to merge for 9 months.

I just spent some time debugging this issue, just to find that I had mistyped `.madgerc` as `.magderc`. I feel really dumb but hopefully this will help someone.

Back again... this time I needed to add a "tsx" block to the `.madgerc`: ```json { "detectiveOptions": { "ts": { "skipTypeImports": true }, "tsx": { "skipTypeImports": true } } }...

You might find this useful: In lerna there is a `--reject-cycles` flag which can be used with `lerna bootstrap` and `lerna run` and possibly others. It errors if there are...

Here's a use case where this is needed — in a monorepo using lerna or rush, where packages depend on other packages in the monorepo. When you're building a package,...

Same here. This is a key feature for the linking workflow. Yarn differs from npm in that it doesn't remove links when installing, which is great. However, now it has...