Anton Gilgur

Results 283 comments of Anton Gilgur

This issue might be duplicative of #336 which does have some suggestions

Similar story for https://github.com/rollup/plugins/pull/1245, which requires Rollup 2.78.0 now, but doesn't mention this in the [CHANGELOG.md entry](https://github.com/rollup/plugins/blob/master/packages/node-resolve/CHANGELOG.md#v1400) besides saying it's "breaking" in some way. The changelog is [auto-generated](https://github.com/rollup/plugins/commit/81e2985885f3b496b2072ae2211a19dc3114125c), which encounters...

In the meantime, to get some types into a `babel.config.js`, we can use JSDoc types. For example: ```js /** @type {import('@babel/core').ConfigFunction} */ module.exports = api => { api.cache.using(() => process.env['NODE_ENV'])...

For reference for anyone who stumbles here, this issue duplicates #156 , which also duplicates the pinned issue #80 > [The formula](https://github.com/Homebrew/homebrew-core/blob/master/Formula/goenv.rb) definitely needs to be updated to reflect 2.x....

> I'll look forward to be stable soon and reflected to `homebrew-core`. :) Unfortunately it's been a few years since a stable release per #80 etc, so I'm not sure...

As far as I can tell, the interval is also only chosen once _globally_ . Customizing it per deploy would be much more useful. Right now I'm just running a...

I would think that the same timers that are used for Locks can be used here, no? Alternatively, if cron is already being used inside of Samson, this could just...

Added `ignore` and `only` to the options test to ensure the docs I fixed have a passing test somewhere. Putting a single regex in (not array) causes it to error...

The CI failure is unrelated to this code, `test/options.js` passes. The test error seen in CI I was getting locally from a fresh clone too, so it predates this PR....

You need to configure `prompt_callback` for this because `kube-ps1` is dynamic (configuring plain `GIT_PROMPT_END` won't work as it will get stale): ```bash # customize Git prompt below with kube_ps1 function...