Ed Morley
Ed Morley
Hi! I'm not actively working on any project that uses webpack, so haven't used Neutrino or webpack-chain for some time. As such it's hard to justify spend time maintaining them....
@sodatea Thank you for the offer to help. Adding webpack 5 support will likely require a few people to help out - someone to open a PR and someone who...
Also given the Travis CI situation (no more credits being given to OSS projects), someone will need to convert the CI to either GitHub Actions or Circle CI. The Neutrino...
Hi! Thank you for the suggestion - I can see how that would be useful. @eliperelman, thoughts?
Hi! Multiple entrypoints and/or multi-main entries are defined like so: ```js config .entry('index') .add('src/index.js') .end() .entry('a-second-page') .add('src/foo.js') .add('src/bar.js') .end(); .entry('a-third-page') .add('src/baz.js'); ``` If there's a way to make this clearer...
@zmanji Does #11257 (in pip 22.2) make much of a difference to the benchmark results?
I'm seeing this issue when using `pydocstyle` locally, and calling it via `pydocstyle my_package_dir`, where it's (incorrectly) reporting issues in eg: ``` my_package_dir/_internal/logging.py:6 in public function `configure_logging`: D103: Missing docstring...
In the time since the analysis in https://github.com/heroku/heroku-buildpack-python/issues/913#issuecomment-696655767 occurred: - The GitHub Actions [actions/setup-python](https://github.com/actions/setup-python) action supports putting an `X.Y` style version alias in `.python-version` - pyenv similarly has just added...
@abitrolly Hi! This issue is not blocked on you, and I'm not expecting you to work on it. Whilst this issue was initially filed about runtime.txt, I've been treating it...
The `.env` file is used by `heroku local` - the tutorial now uses both: https://devcenter.heroku.com/articles/getting-started-with-python#define-config-vars And more recently (as of #203) there is now a comment in the `.env` file...