Steven Hargrove

Results 31 comments of Steven Hargrove

Babel 7 is not an option for my work projects because it is still.in beta. While its very stable and looking great so far - it is called beta for...

@simonepri @Unitech I'm pretty sure this requires `pm2-runtime` to be used as `ENTRYPOINT`, instead of `CMD`. Currently, we are using `CMD`: https://github.com/keymetrics/docker-pm2/blob/master/tags/8/alpine/Dockerfile#L11 This matters because docker container only forward signals...

My only reliable solution that I've found was switching my karma config setting `browsers` to Chrome while using karma's `autoWatch`

ref https://github.com/AtomLinter/linter-flow/issues/47#issuecomment-199573837

@Jorybraun Sorry this took so long, here you go: - I've given you collaborator access to my fork: https://github.com/hulkish/webpack.js.org - branch: `pwa-add-component-tests` - I've added 1 test as an example,...

Would really like to see this as well. It's actually far-preferred to not involve global dependencies at all for your production apps.

this is easily achievable with a little shell statement: ```sh node $([[ -f .env ]] && echo "--env-file .env ")index.js ```

@creage is this thrown from a child process? is `node-voo` requirable from the location of that file?

@creage installing it globally does not guarantee it will work. It must be in one of the `node_modules` dirs which exist relative to where you are doing the require. Since...