David Michon

Results 56 comments of David Michon

How's the perf if you only replace the computeLineStarts() call with a scan for count and last line start position?

If you run with `--debug` it should log the command being forwarded to `pnpm`. Are the `--filter` arguments not showing up in that command?

#2777 is looking at an alternate approach to the problem, namely it is turning off the logging from install-run-rush.js altogether unless `--debug` or `-d` is passed on the command line,...

@chengcyber > If a plugin should be activiated sometime, it takes by "activationEvents" property, For instance, only activiated when `rush build`: `"activiationEvents": ["onCommand:build"]`. Currently, this property names `asscoiatedCommands: ["build"]` I'm...

Might want to check with pnpm, since for a long time the `--lockfile-only` parameter didn't do much to improve performance; e.g. it still downloaded dependencies. Not sure if that's still...

@elliot-nelson , the main reason this is paused is that it gets almost completely obviated by phased commands, assuming that your `build:watch` command does a strict subset of the phases...

The solution we've used internally is, in tsconfig.json / compilerOptions: ```json "sourceRoot": "../src", "inlineSources": true ``` This also assumes that your webpack config uses `source-map-loader` to read the TS->JS source...

@octogonz , @elliot-nelson , I'm pretty much at the point where I would rather only display the banner when `--help` (or maybe `--debug`) are passed, and suppress it the rest...

> > API Extractor isn't happy with the merged declarations. It has the following errors: > > I'm not sure this new syntax is an improvement. We should discuss it....