Whitney Young

Results 25 issues of Whitney Young

We need to better handle `.bashrc` vs `.bash_profile` on different platforms. See the conversation on #30.

Include the following in the output of `__avn_debug` automatically: - [ ] The current version of `avn`, `node`, and `npm` - [ ] All installed plugins & allow them to...

After seeing that `metalsmith-templates` [has been deprecated](https://github.com/segmentio/metalsmith-templates/pull/26#issuecomment-120669313), we should switch to using [`metalsmith-layouts`](https://github.com/superwolff/metalsmith-layouts) and/or [`metalsmith-in-place`](https://github.com/superwolff/metalsmith-in-place).

Migrations should support the following: - [ ] Alter column definition - [ ] Alter column default value - [ ] Alter whether column can contain nulls - [ ]...

enhancement

This could be done by hashing migrations when they are run so we're able to warn the user about migrations that have been altered after they've been applied. Store the...

enhancement

Regex queries on SQLite are currently not supported. So the following doesn't work: ``` js Article.objects.where({ 'title[regex]': /colou?r/ }) ``` Additionally, date based functions are not available, so these don't...

It would be nice if the SQLite adapter would better handle types as they were written to and read from the database. Types are being automatically transformed by `node-sqlite3` when...

For large data sets, it'd be nice to allow streaming data queries. For instance: ``` js var query = Article.objects.where({ authorId: 5 }); query.on('data', function(article) { // handle single record...

enhancement

This addresses the client-server concerns from #1 by using `deasync` to completely remove the client-server setup. I'm a little wary about how `deasync` achieves its goal, but have looked a...

Performance may be impacted by PostCSS compilation, the client-server setup (including launching a `node` process for the client on each compiled file). The following are ideas on how to make...