Kyle Robinson Young

Results 25 issues of Kyle Robinson Young

They should be combined as all aspects should run on both. Then update the test script to: `standard && node test/index.js && zuul --local 9966 -- test/index.js` [browser-test-helpers](https://github.com/shama/browser-test-helpers) needs an...

CSS can be attached to elements with: `this.attachCSS('css src')` which will localize the CSS to the element. - [ ] How does this fair with nested elements? _Im thinking top...

Currently `.serve()` returns a middleware but that makes it a little difficult if you want to integrate with other middleware. Such as: ``` js var useBaseRouter = app.router.serve(function (page, data)...

Things like `glob` should only run on the server and not compiled into the client side.

Take a look at this pull: https://github.com/cowboy/node-glob-whatev/pull/3/files Both changes are incorrect. I think a better migration would be something a la `var existsSync = fs.existsSync || path.existsSync;` so it doesn't...

bug
enhancement

Currently if a test fails because of a runtime error such as a mistyped method name eg `issue.whoops()`, it will be assumed the test case has failed and trigger an...

To be more consistent with the `add()` API. Example: `this.remove(['node_modules/**/*', 'bower_components/**/*'])`.

enhancement

That and the fallback stat poller needs more testing in general.

Currently `grunt-contrib-watch` will only run one task group per target at a time but `gaze` will continue to process. So during watch if a task modifies a large amount of...

enhancement