Kelly Miyashiro

Results 32 comments of Kelly Miyashiro

If you want to do it per app, you can replace this plugin with `postinstall` in your `scripts` of `package.json`. I include grunt-cli and bower in my dependencies so I...

Also getting an error. `ender build jeesh ender-tipsy` ``` $('a').tipsy() $('a').tipsy() is not a function ```

Oh, that's because the ender key in package.json is set to 'noop' ``` js { "name": "ender-tipsy", "description": "Tipsy for Ender", "version": "0.0.1", "authors": ["Jason Frame", "Dustin Diaz "], "keywords":...

or... maybe it's the lack of 'main': './ender.tipsy.js' ? Not sure.

Should probably mention this in the readme, "CORS not supported for IE8/9".

Ah, not sure why I didn't catch that. You're right, fixing the syntax causes parcel to generate the correct script tag. Kind of odd that it behaves differently based on...

Is wrapping the output in `` actually what the XUnit spec declares? I don't use XUnit so I'm not sure if adding this wrapper will break whatever consumes the output...

have you tried without `dest`? have you tried making `dest: './output.json'`?

The JSON reporter is the only one that doesn't output using `console.log` and instead uses `process.stdout.write`... which is problematic since we don't want to output everything from stdout into the...

Oh wait, I forgot that we used to hijack stdout instead of console but then switched back because it broke old versions of mocha. Master is now on mocha 2.x...