Andrey Mikhaylov (lolmaus)
Andrey Mikhaylov (lolmaus)
@lolmaus: by adding this to `ember-cli-build`: ``` js { snippetSearchPaths: ['app', 'node_modules/addon-name/addon'] } ``` :+1:
What comparison function would you implement for that?
Custom compare function is an awesome idea. Might be introduced to quite a few assertions. On the other hand, if you're using a custom function, why not just do an...
I think a custom compare function makes sense when the assertion is complex (e. g. using a loop under the hood). E. g. it's useless to introduce a custom compare...
For me, FireSass makes Firebug's "Computed" tab freeze the browser for 5—10 seconds. Whenever i open the "Computed" tab, it freezes for a while. Surfing with this tab open makes...
The freeze time of the Computed tab is indeed proportional to the size of the CSS file. But the main reason of the freeze is the `:debug_info` switch of SASS....
Yarn is now officially supported by Ember CLI.
Almost a year later, is there a solution? I can imagine something like this: ```js { foo: "Foo", bars: ["bar", "Bar", "BAR"], result: map("bars", "foo", (bar, i, bars, foo) =>...
The callback passed to `map` receives three normal iteration arguments: item, index and array, and then as much arguments as the number of extra dependencies. The current workaround is the...
Does it support Node modules (CommonJS)?