Alex Potsides

Results 540 comments of Alex Potsides

@TomKaltz It's still standard procedure, yes. This is because npm has been inconsistent with how `update` behaves over versions and sometimes will update the top level module but not any...

If your process runs as root and you're not logged in to guv-web as root, you won't be able to stop the process. You can only interact with processes that...

This is going to require quite a bit more work than just updating the dep versions as Ampersand has released quite a few breaking changes.

One spanner in the works here is that this module uses an older, incompatible version of JavaScript decorators so updating TypeScript is quite painful. The decorators just add `saveAsJSON`/`fromJSON` methods...

@pgilad have you run `npm install bootstrap-growl` before? If so npm probably installed it from your local cache. Try removing it first: ``` sh $ rm -rf ~/.npm/bootstrap-growl $ npm...

I think that since it's been unpublished, the name is now free for anyone to use on npm so you shouldn't need to be added, you can just publish. Bear...

From memory at the time we were trying to remove dependencies with native addons. We were using the [rabin](https://www.npmjs.com/package/rabin) module from the DAT project which uses the C implementation from...

Do you mean to say your process did a `process.exit(0)` or similar?

The auto-restart feature works but currently it'll only restart a process that exits with a non-zero exit code. This is by design - the thought process being that if your...

> it is difficult to run individual test files for given environments You can do something like this: ```console $ aegir test -t node --grep 'build' ```