paulirish/matchMedia.js

Separate 'matchMedia.addListener.js' into separate npm module or include when importing 'matchmedia-polyfill';

Closed this issue · 2 comments

require('matchmedia-polyfill');

doesn't work.

require('matchmedia-polyfill');
require('../node_modules/matchmedia-polyfill/matchMedia.addListener');

does work.

Don't want to gripe too much about nothing, but it would be convenient to either include the addListener polyfill in with the main file or to split it out into it's own npm module so that it can be required more conveniently.

additionally some extra documentation about the addListener polyfill might be nice.

I use:

require('matchmedia-polyfill');
require('matchmedia-polyfill/matchMedia.addListener');

But +1 on additional documentation, so that it's clear that you need to include both, for example.

fixed in cd9df4c